1
0
Fork 0
mirror of https://github.com/mperham/sidekiq.git synced 2022-11-09 13:52:34 -05:00
This commit is contained in:
Mike Perham 2019-04-18 09:40:24 -07:00
parent 103601e136
commit a07e5b1372

View file

@ -7,20 +7,23 @@ references:
# Download and cache dependencies # Download and cache dependencies
restore: &restore restore: &restore
keys: restore_cache:
- v1-dependencies-{{ checksum "Gemfile.lock" }} keys:
# fallback to using the latest cache if no exact match is found - v1-dependencies-{{ checksum "Gemfile.lock" }}
- v1-dependencies- # fallback to using the latest cache if no exact match is found
- v1-dependencies-
bundle: &bundle bundle: &bundle
name: install dependencies run:
command: | name: install dependencies
bundle install --jobs=4 --retry=3 --path vendor/bundle command: |
bundle install --jobs=4 --retry=3 --path vendor/bundle
save: &save save: &save
paths: save_cache:
- ./vendor/bundle paths:
key: v1-dependencies-{{ checksum "Gemfile.lock" }} - ./vendor/bundle
key: v1-dependencies-{{ checksum "Gemfile.lock" }}
jobs: jobs:
"ruby-2.5": "ruby-2.5":