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