File tree Expand file tree Collapse file tree 1 file changed +17
-17
lines changed Expand file tree Collapse file tree 1 file changed +17
-17
lines changed Original file line number Diff line number Diff line change @@ -18,32 +18,32 @@ jobs:
18
18
steps :
19
19
- checkout
20
20
# Restore Cached Dependencies
21
- - type : cache-restore
22
- name : Restore bundle cache
23
- key : tutor_virtual-{{ checksum "Gemfile.lock" }}
21
+ # - type: cache-restore
22
+ # name: Restore bundle cache
23
+ # key: tutor_virtual-{{ checksum "Gemfile.lock" }}
24
24
25
25
- run : gem install bundler:${BUNDLER_VERSION}
26
26
27
27
# Caching Ruby Gems
28
28
# Reference: https://www.benpickles.com/articles/76-better-ruby-gem-caching-on-circleci
29
- - restore_cache :
30
- keys :
31
- - bundler-{{ checksum "Gemfile.lock" }}-v1
32
- - bundler-
29
+ # - restore_cache:
30
+ # keys:
31
+ # - bundler-{{ checksum "Gemfile.lock" }}
32
+ # - bundler-
33
33
34
- - run : bundle install --clean --path vendor/bundle
34
+ # - run: bundle install --clean --path vendor/bundle
35
35
36
- - save_cache :
37
- key : bundler-{{ checksum "Gemfile.lock" }}-v1
38
- paths :
39
- - vendor/bundle
36
+ # - save_cache:
37
+ # key: bundler-{{ checksum "Gemfile.lock" }}
38
+ # paths:
39
+ # - vendor/bundle
40
40
41
41
# Cache Dependencies
42
- - type : cache-save
43
- name : Store bundle cache
44
- key : tutor_virtual-{{ checksum "Gemfile.lock" }}
45
- paths :
46
- - vendor/bundle
42
+ # - type: cache-save
43
+ # name: Store bundle cache
44
+ # key: tutor_virtual-{{ checksum "Gemfile.lock" }}
45
+ # paths:
46
+ # - vendor/bundle
47
47
48
48
# Bundle install dependencies
49
49
- run : bundle install
You can’t perform that action at this time.
0 commit comments