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,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":
|
||||||
|
|
Loading…
Reference in a new issue