demarches-normaliennes/.circleci/config.yml

142 lines
3.6 KiB
YAML
Raw Normal View History

2017-04-10 16:45:31 +02:00
version: 2
2017-12-15 12:16:02 +01:00
defaults: &defaults
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
- 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" }}
bundle_save_cache: &bundle_save_cache
save_cache:
2018-01-31 11:26:15 +01:00
key: bundle-install-v8-{{ arch }}-{{ checksum "Gemfile.lock" }}
paths:
- ~/vendor/bundle
2017-12-15 12:16:02 +01:00
bundle_install: &bundle_install
run:
name: Install Ruby Dependencies
command: bundle install --path ~/vendor/bundle
2017-12-15 12:16:02 +01: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
- *bundle_save_cache
- *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
- *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 \
--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:
path: ~/test_results/rspec.xml
2017-12-15 12:16:02 +01:00
lint:
<<: *defaults
steps:
- checkout
- *bundle_restore_cache
- *bundle_install
- *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
command: bundle exec rubocop
2017-07-20 15:01:21 +02:00
- run:
name: Run brakeman
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: |
if [ "${CIRCLE_BRANCH}" == "dev" ]; then
2017-04-10 16:45:31 +02:00
bundle exec rake deploy_ha
fi
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:
filters:
branches:
only:
- dev
- master
2017-12-15 12:16:02 +01:00
requires:
- test
- lint