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