2017-04-10 16:45:31 +02:00
|
|
|
version: 2
|
2017-12-15 12:16:02 +01:00
|
|
|
|
|
|
|
defaults: &defaults
|
2018-01-04 10:46:33 +01:00
|
|
|
working_directory: ~/tps
|
2017-12-15 12:16:02 +01:00
|
|
|
docker:
|
2018-01-12 13:07:48 +01:00
|
|
|
- image: circleci/ruby:2.5.0-node-browsers
|
2018-01-04 10:46:33 +01:00
|
|
|
- image: circleci/postgres:9.5
|
2017-12-15 12:16:02 +01:00
|
|
|
environment:
|
|
|
|
POSTGRES_USER: tps_test
|
|
|
|
POSTGRES_PASSWORD: tps_test
|
|
|
|
POSTGRES_DB: tps_test
|
|
|
|
|
|
|
|
bundle_restore_cache: &bundle_restore_cache
|
|
|
|
restore_cache:
|
2018-01-31 11:26:15 +01:00
|
|
|
key: bundle-install-v8-{{ arch }}-{{ checksum "Gemfile.lock" }}
|
2018-01-04 10:46:33 +01:00
|
|
|
|
|
|
|
bundle_save_cache: &bundle_save_cache
|
|
|
|
save_cache:
|
2018-01-31 11:26:15 +01:00
|
|
|
key: bundle-install-v8-{{ arch }}-{{ checksum "Gemfile.lock" }}
|
2018-01-04 10:46:33 +01:00
|
|
|
paths:
|
|
|
|
- ~/vendor/bundle
|
2017-12-15 12:16:02 +01:00
|
|
|
|
|
|
|
bundle_install: &bundle_install
|
|
|
|
run:
|
|
|
|
name: Install Ruby Dependencies
|
2018-01-04 10:46:33 +01:00
|
|
|
command: bundle install --path ~/vendor/bundle
|
2017-12-15 12:16:02 +01:00
|
|
|
|
2018-07-12 11:50:47 +02:00
|
|
|
yarn_restore_cache: &yarn_restore_cache
|
|
|
|
restore_cache:
|
|
|
|
key: yarn-install-v8-{{ arch }}-{{ checksum "yarn.lock" }}
|
|
|
|
|
|
|
|
yarn_save_cache: &yarn_save_cache
|
|
|
|
save_cache:
|
|
|
|
key: yarn-install-v8-{{ arch }}-{{ checksum "yarn.lock" }}
|
|
|
|
paths:
|
|
|
|
- ~/node_modules
|
|
|
|
|
|
|
|
yarn_install: &yarn_install
|
|
|
|
run:
|
|
|
|
name: Install JS Dependencies
|
|
|
|
command: yarn install --non-interactive
|
|
|
|
|
2017-04-10 16:45:31 +02:00
|
|
|
jobs:
|
|
|
|
build:
|
2017-12-15 12:16:02 +01:00
|
|
|
<<: *defaults
|
2017-04-10 16:45:31 +02:00
|
|
|
steps:
|
|
|
|
- checkout
|
2017-12-15 12:16:02 +01:00
|
|
|
- *bundle_restore_cache
|
|
|
|
- *bundle_install
|
2018-01-04 10:46:33 +01:00
|
|
|
- *bundle_save_cache
|
2018-07-12 11:50:47 +02:00
|
|
|
- *yarn_restore_cache
|
|
|
|
- *yarn_save_cache
|
|
|
|
- *yarn_install
|
2017-12-15 12:16:02 +01:00
|
|
|
test:
|
|
|
|
<<: *defaults
|
2018-02-26 14:38:24 +01:00
|
|
|
parallelism: 3
|
2017-12-15 12:16:02 +01:00
|
|
|
steps:
|
|
|
|
- checkout
|
|
|
|
- *bundle_restore_cache
|
|
|
|
- *bundle_install
|
2018-07-12 11:50:47 +02:00
|
|
|
- *yarn_restore_cache
|
|
|
|
- *yarn_install
|
2017-04-10 16:45:31 +02:00
|
|
|
- run:
|
|
|
|
environment:
|
|
|
|
DATABASE_URL: "postgres://tps_test@localhost:5432/tps_test"
|
|
|
|
name: Create DB
|
|
|
|
command: bundle exec rake db:create db:schema:load db:migrate RAILS_ENV=test
|
|
|
|
- run:
|
|
|
|
environment:
|
|
|
|
DATABASE_URL: "postgres://tps_test@localhost:5432/tps_test"
|
|
|
|
name: Run Tests, Splitted by Timings
|
|
|
|
command: |
|
2017-12-15 12:16:02 +01:00
|
|
|
bundle exec rspec --profile 10 \
|
|
|
|
--format RspecJunitFormatter \
|
2018-01-04 10:46:33 +01:00
|
|
|
--out ~/test_results/rspec.xml \
|
2017-12-15 12:16:02 +01:00
|
|
|
--format progress \
|
|
|
|
$(circleci tests glob "spec/**/*_spec.rb" | circleci tests split --split-by=timings)
|
|
|
|
- store_test_results:
|
2018-01-04 10:46:33 +01:00
|
|
|
path: ~/test_results/rspec.xml
|
2017-12-15 12:16:02 +01:00
|
|
|
lint:
|
|
|
|
<<: *defaults
|
|
|
|
steps:
|
|
|
|
- checkout
|
|
|
|
- *bundle_restore_cache
|
|
|
|
- *bundle_install
|
2018-07-12 11:50:47 +02:00
|
|
|
- *yarn_restore_cache
|
|
|
|
- *yarn_install
|
|
|
|
- run:
|
|
|
|
name: Run eslint
|
|
|
|
command: yarn lint:js
|
2017-06-13 10:58:46 +02:00
|
|
|
- run:
|
|
|
|
name: Run rubocop
|
2018-01-16 18:57:04 +01:00
|
|
|
command: bundle exec rubocop
|
2017-07-20 15:01:21 +02:00
|
|
|
- run:
|
|
|
|
name: Run brakeman
|
2018-01-20 15:19:43 +01:00
|
|
|
command: bundle exec brakeman
|
2017-04-10 16:45:31 +02:00
|
|
|
- run:
|
|
|
|
name: Run haml-lint
|
|
|
|
command: bundle exec haml-lint app/views/
|
2017-04-11 17:20:23 +02:00
|
|
|
- run:
|
|
|
|
name: Run scss-lint
|
|
|
|
command: bundle exec scss-lint app/assets/stylesheets/
|
2017-12-15 12:16:02 +01:00
|
|
|
deploy:
|
|
|
|
<<: *defaults
|
|
|
|
steps:
|
|
|
|
- checkout
|
|
|
|
- *bundle_restore_cache
|
|
|
|
- *bundle_install
|
2017-04-13 09:25:34 +02:00
|
|
|
- add_ssh_keys:
|
|
|
|
fingerprints:
|
|
|
|
- "0a:67:42:7d:7e:b7:e1:3c:48:8f:bf:68:10:51:a8:44"
|
2017-04-10 16:45:31 +02:00
|
|
|
- deploy:
|
|
|
|
command: |
|
2017-07-05 14:41:00 +02:00
|
|
|
if [ "${CIRCLE_BRANCH}" == "dev" ]; then
|
2017-04-10 16:45:31 +02:00
|
|
|
bundle exec rake deploy_ha
|
|
|
|
fi
|
2017-04-13 11:55:11 +02:00
|
|
|
|
|
|
|
if [ "${CIRCLE_BRANCH}" == "master" ]; then
|
|
|
|
bundle exec rake deploy_ha to=production
|
|
|
|
fi
|
2017-12-15 12:16:02 +01:00
|
|
|
|
|
|
|
workflows:
|
|
|
|
version: 2
|
|
|
|
build_and_test:
|
|
|
|
jobs:
|
|
|
|
- build
|
|
|
|
- test:
|
|
|
|
requires:
|
|
|
|
- build
|
|
|
|
- lint:
|
|
|
|
requires:
|
|
|
|
- build
|
|
|
|
- deploy:
|
2017-12-19 11:40:47 +01:00
|
|
|
filters:
|
|
|
|
branches:
|
|
|
|
only:
|
|
|
|
- dev
|
|
|
|
- master
|
2017-12-15 12:16:02 +01:00
|
|
|
requires:
|
|
|
|
- test
|
|
|
|
- lint
|