Skip to content

Commit

Permalink
Update circle builds to current patch versions
Browse files Browse the repository at this point in the history
  • Loading branch information
mejackreed committed May 20, 2019
1 parent 8de59c4 commit 958b399
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
version: 2
jobs:
rails_5_2_0:
rails_5_2_3:
working_directory: ~/geoblacklight
docker:
- image: circleci/ruby:2.5.1-node-browsers
Expand All @@ -13,7 +13,7 @@ jobs:
BUNDLE_PATH: /home/circleci/geoblacklight/vendor/bundle
CI: true
RAILS_ENV: test
RAILS_VERSION: 5.2.0
RAILS_VERSION: 5.2.3
- image: solr:7-alpine
command: bin/solr -cloud -noprompt -f -p 8983
steps:
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
key: geoblacklight-bundle-5-2-0-{{ checksum "geoblacklight.gemspec" }}-{{ checksum "Gemfile" }}-3f5eff
paths:
- /home/circleci/geoblacklight/vendor/bundle
rails_5_1_6:
rails_5_1_7:
working_directory: ~/geoblacklight
docker:
- image: circleci/ruby:2.4.4-node-browsers
Expand All @@ -73,15 +73,15 @@ jobs:
GEM_HOME: /home/circleci/geoblacklight/vendor/bundle
BUNDLE_PATH: /home/circleci/geoblacklight/vendor/bundle
RAILS_ENV: test
RAILS_VERSION: 5.1.6
RAILS_VERSION: 5.1.7
- image: solr:7-alpine
command: bin/solr -cloud -noprompt -f -p 8983
steps:
- checkout
# Restore bundle cache
- type: cache-restore
name: Restore bundle cache
key: geoblacklight-bundle-5-1-6-{{ checksum "Gemfile" }}-{{ checksum "geoblacklight.gemspec" }}-3f5eff
key: geoblacklight-bundle-5-1-7-{{ checksum "Gemfile" }}-{{ checksum "geoblacklight.gemspec" }}-3f5eff
# Install gems and run specs
- run: bundle check || bundle install
# Run the test suites
Expand Down Expand Up @@ -115,7 +115,7 @@ jobs:
# Store bundle cache
- type: cache-save
name: Store bundle cache
key: geoblacklight-bundle-5-1-6-{{ checksum "Gemfile" }}-{{ checksum "geoblacklight.gemspec" }}-3f5eff
key: geoblacklight-bundle-5-1-7-{{ checksum "Gemfile" }}-{{ checksum "geoblacklight.gemspec" }}-3f5eff
paths:
- /home/circleci/geoblacklight/vendor/bundle
rubocop:
Expand All @@ -131,16 +131,16 @@ jobs:
# Restore bundle cache
- type: cache-restore
name: Restore bundle cache
key: geoblacklight-bundle-5-2-0-{{ checksum "geoblacklight.gemspec" }}-{{ checksum "Gemfile" }}-3f5eff
key: geoblacklight-bundle-5-2-3-{{ checksum "geoblacklight.gemspec" }}-{{ checksum "Gemfile" }}-3f5eff
# Install gems and run rubocop
- run: bundle check || bundle install
- run: bundle exec rake rubocop
workflows:
version: 2
build_accept_deploy:
jobs:
- rails_5_2_0
- rails_5_1_6
- rails_5_2_3
- rails_5_1_7
- rubocop:
requires:
- rails_5_2_0
- rails_5_2_3

0 comments on commit 958b399

Please sign in to comment.