mirror of
https://github.com/mperham/sidekiq.git
synced 2022-11-09 13:52:34 -05:00
fix
This commit is contained in:
parent
103601e136
commit
a07e5b1372
1 changed files with 13 additions and 10 deletions
|
@ -7,17 +7,20 @@ references:
|
|||
|
||||
# Download and cache dependencies
|
||||
restore: &restore
|
||||
restore_cache:
|
||||
keys:
|
||||
- v1-dependencies-{{ checksum "Gemfile.lock" }}
|
||||
# fallback to using the latest cache if no exact match is found
|
||||
- v1-dependencies-
|
||||
|
||||
bundle: &bundle
|
||||
run:
|
||||
name: install dependencies
|
||||
command: |
|
||||
bundle install --jobs=4 --retry=3 --path vendor/bundle
|
||||
|
||||
save: &save
|
||||
save_cache:
|
||||
paths:
|
||||
- ./vendor/bundle
|
||||
key: v1-dependencies-{{ checksum "Gemfile.lock" }}
|
||||
|
|
Loading…
Reference in a new issue