Created
April 10, 2018 10:02
-
-
Save virolea/b589e7bd128ed53b9080583d1213e71f to your computer and use it in GitHub Desktop.
Circleci 2.0 config.yml - Rails - Postgresql - Redis
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Ruby CircleCI 2.0 configuration file | |
# | |
# Check https://circleci.com/docs/2.0/language-ruby/ for more details | |
# | |
version: 2 | |
jobs: | |
build: | |
docker: | |
# specify the version you desire here | |
- image: circleci/ruby:2.4.1-node-browsers | |
environment: | |
PGHOST: localhost | |
PGUSER: myapp | |
RAILS_ENV: test | |
- image: postgres:9.5 | |
environment: | |
POSTGRES_USER: myapp | |
POSTGRES_DB: myapp_test | |
POSTGRES_PASSWORD: "" | |
- image: redis | |
working_directory: ~/myapp | |
steps: | |
- checkout | |
# Download and cache dependencies | |
- restore_cache: | |
keys: | |
- v1-dependencies-{{ checksum "Gemfile.lock" }} | |
# fallback to using the latest cache if no exact match is found | |
- v1-dependencies- | |
- run: | |
name: install dependencies | |
command: | | |
bundle install --jobs=4 --retry=3 --path vendor/bundle | |
- save_cache: | |
paths: | |
- ./vendor/bundle | |
key: v1-dependencies-{{ checksum "Gemfile.lock" }} | |
# Database setup | |
- run: bundle exec rake db:create | |
- run: bundle exec rake db:schema:load | |
# run tests! | |
# Change to rspec if you are using rspec | |
- run: | |
name: run tests | |
command: bundle exec rails test | |
# collect reports | |
- store_test_results: | |
path: /tmp/test-results | |
- store_artifacts: | |
path: /tmp/test-results | |
destination: test-results |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment