2019-08-02 00:49:11 +09:00
|
|
|
version: 2.1
|
2019-06-26 15:31:14 +09:00
|
|
|
|
2019-08-02 00:49:11 +09:00
|
|
|
executors:
|
2019-03-02 17:31:41 +09:00
|
|
|
build:
|
|
|
|
docker:
|
2019-08-13 17:03:59 +09:00
|
|
|
- image: circleci/php:7.3-node-browsers
|
2019-03-02 17:31:41 +09:00
|
|
|
environment:
|
|
|
|
APP_DEBUG: true
|
|
|
|
APP_ENV: testing
|
|
|
|
APP_KEY: base64:f2tcw34GKT8EOtb5myZxJ8QLdgNivmyPhoQIPY2YfK8=
|
|
|
|
DB_CONNECTION: pgsql
|
|
|
|
DB_DATABASE: tissue
|
|
|
|
DB_USERNAME: tissue
|
|
|
|
DB_PASSWORD: tissue
|
|
|
|
- image: circleci/postgres:10-alpine
|
|
|
|
environment:
|
|
|
|
POSTGRES_DB: tissue
|
|
|
|
POSTGRES_USER: tissue
|
|
|
|
POSTGRES_PASSWORD: tissue
|
2019-08-02 00:49:11 +09:00
|
|
|
|
|
|
|
commands:
|
|
|
|
initialize:
|
2019-03-02 17:31:41 +09:00
|
|
|
steps:
|
|
|
|
- checkout
|
|
|
|
- run: sudo apt update
|
|
|
|
- run: sudo apt install -y libpq-dev
|
|
|
|
- run: sudo docker-php-ext-install zip
|
|
|
|
- run: sudo docker-php-ext-install pdo_pgsql
|
2020-06-02 22:40:00 +09:00
|
|
|
- run:
|
2020-06-02 22:41:00 +09:00
|
|
|
command: |
|
|
|
|
curl -sSL "https://nodejs.org/dist/v12.16.3/node-v12.16.3-linux-x64.tar.xz" | sudo tar --strip-components=2 -xJ -C /usr/local/bin/ node-v12.16.3-linux-x64/bin/node
|
|
|
|
curl https://www.npmjs.com/install.sh | sudo bash
|
2019-08-02 00:49:11 +09:00
|
|
|
restore_composer:
|
|
|
|
steps:
|
2019-03-02 17:31:41 +09:00
|
|
|
- restore_cache:
|
|
|
|
keys:
|
|
|
|
- v1-dependencies-{{ checksum "composer.json" }}
|
|
|
|
- v1-dependencies-
|
2019-08-02 00:49:11 +09:00
|
|
|
save_composer:
|
|
|
|
steps:
|
2019-03-02 17:31:41 +09:00
|
|
|
- save_cache:
|
|
|
|
key: v1-dependencies-{{ checksum "composer.json" }}
|
|
|
|
paths:
|
|
|
|
- ./vendor
|
2019-08-02 00:49:11 +09:00
|
|
|
restore_npm:
|
|
|
|
steps:
|
2019-03-05 20:25:06 +09:00
|
|
|
- restore_cache:
|
|
|
|
keys:
|
|
|
|
- v1-dependencies-{{ checksum "package.json" }}
|
|
|
|
- v1-dependencies-
|
2019-08-02 00:49:11 +09:00
|
|
|
save_npm:
|
|
|
|
steps:
|
2019-03-05 20:25:06 +09:00
|
|
|
- save_cache:
|
|
|
|
key: v1-dependencies-{{ checksum "package.json" }}
|
|
|
|
paths:
|
|
|
|
- ./node_modules
|
|
|
|
- ~/.yarn
|
|
|
|
|
2019-08-02 00:49:11 +09:00
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
executor: build
|
|
|
|
steps:
|
|
|
|
- initialize
|
|
|
|
|
|
|
|
- restore_composer
|
|
|
|
- run: composer install -n --prefer-dist
|
|
|
|
- save_composer
|
|
|
|
|
|
|
|
- restore_npm
|
|
|
|
- run: yarn install
|
|
|
|
- save_npm
|
|
|
|
|
2019-03-05 20:34:08 +09:00
|
|
|
- run: yarn run prod
|
2019-03-02 17:31:41 +09:00
|
|
|
|
2019-08-02 00:49:11 +09:00
|
|
|
- persist_to_workspace:
|
|
|
|
root: .
|
|
|
|
paths:
|
|
|
|
- public
|
|
|
|
|
|
|
|
test:
|
|
|
|
executor: build
|
|
|
|
steps:
|
|
|
|
- initialize
|
|
|
|
|
|
|
|
- restore_composer
|
|
|
|
- restore_npm
|
|
|
|
|
|
|
|
- attach_workspace:
|
|
|
|
at: .
|
|
|
|
|
|
|
|
- run: php artisan migrate
|
|
|
|
|
2019-03-02 17:31:41 +09:00
|
|
|
# Run linter
|
|
|
|
- run:
|
|
|
|
command: |
|
|
|
|
mkdir -p /tmp/php-cs-fixer
|
|
|
|
./vendor/bin/php-cs-fixer fix --dry-run --diff --format=junit > /tmp/php-cs-fixer/php-cs-fixer.xml
|
|
|
|
when: always
|
|
|
|
- store_test_results:
|
|
|
|
path: /tmp/php-cs-fixer
|
|
|
|
|
2019-03-10 19:09:20 +09:00
|
|
|
# Run stylelint
|
|
|
|
- run:
|
|
|
|
name: stylelint
|
|
|
|
command: yarn run stylelint
|
|
|
|
when: always
|
|
|
|
|
2020-06-06 17:37:01 +09:00
|
|
|
# Run eslint
|
|
|
|
- run:
|
|
|
|
name: eslint
|
|
|
|
command: yarn run eslint
|
|
|
|
when: always
|
|
|
|
|
2019-03-02 17:31:41 +09:00
|
|
|
# Run unit test
|
|
|
|
- run:
|
|
|
|
command: |
|
|
|
|
mkdir -p /tmp/phpunit
|
2019-06-26 15:31:14 +09:00
|
|
|
./vendor/bin/phpunit --log-junit /tmp/phpunit/phpunit.xml --coverage-clover=/tmp/phpunit/coverage.xml
|
2019-03-02 17:31:41 +09:00
|
|
|
when: always
|
|
|
|
- store_test_results:
|
|
|
|
path: /tmp/phpunit
|
2019-06-26 15:31:14 +09:00
|
|
|
- store_artifacts:
|
|
|
|
path: /tmp/phpunit/coverage.xml
|
|
|
|
|
|
|
|
# Upload coverage
|
|
|
|
- run:
|
2019-06-26 15:46:35 +09:00
|
|
|
command: bash <(curl -s https://codecov.io/bash) -f /tmp/phpunit/coverage.xml
|
2019-06-26 15:31:14 +09:00
|
|
|
when: always
|
2019-08-02 00:49:11 +09:00
|
|
|
|
|
|
|
test_resolver:
|
|
|
|
executor: build
|
|
|
|
environment:
|
|
|
|
TEST_USE_HTTP_MOCK: false
|
|
|
|
steps:
|
|
|
|
- initialize
|
|
|
|
|
|
|
|
- restore_composer
|
|
|
|
|
|
|
|
- attach_workspace:
|
|
|
|
at: .
|
|
|
|
|
|
|
|
- run: php artisan migrate
|
|
|
|
|
|
|
|
# Run unit test
|
|
|
|
- run:
|
|
|
|
command: |
|
|
|
|
mkdir -p /tmp/phpunit
|
2019-08-10 12:18:36 +09:00
|
|
|
./vendor/bin/phpunit --testsuite MetadataResolver --log-junit /tmp/phpunit/phpunit.xml --coverage-clover=/tmp/phpunit/coverage.xml
|
2019-08-02 00:49:11 +09:00
|
|
|
when: always
|
|
|
|
- store_test_results:
|
|
|
|
path: /tmp/phpunit
|
|
|
|
- store_artifacts:
|
|
|
|
path: /tmp/phpunit/coverage.xml
|
|
|
|
|
|
|
|
workflows:
|
|
|
|
version: 2.1
|
|
|
|
test:
|
|
|
|
jobs:
|
|
|
|
- build
|
|
|
|
- test:
|
|
|
|
requires:
|
|
|
|
- build
|
|
|
|
scheduled_resolver_test:
|
|
|
|
triggers:
|
|
|
|
- schedule:
|
|
|
|
cron: "4 0 * * 1"
|
|
|
|
filters:
|
|
|
|
branches:
|
|
|
|
only:
|
|
|
|
- develop
|
|
|
|
jobs:
|
|
|
|
- build
|
|
|
|
- test_resolver:
|
|
|
|
requires:
|
|
|
|
- build
|
|
|
|
|