Skip to content

Commit 344301f

Browse files
committed
Reconfigure circleci
1 parent 8282a52 commit 344301f

File tree

1 file changed

+18
-17
lines changed

1 file changed

+18
-17
lines changed

.circleci/config.yml

Lines changed: 18 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -17,33 +17,34 @@ jobs:
1717

1818
steps:
1919
- checkout
20+
- run: apt-get install libv8-dev
2021
# 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" }}
2425

2526
- run: gem install bundler:${BUNDLER_VERSION}
2627

2728
# Caching Ruby Gems
2829
# 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-
3334

34-
- run: bundle install --clean --path vendor/bundle
35+
# - run: bundle install --clean --path vendor/bundle
3536

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
4041

4142
# 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
4748

4849
# Bundle install dependencies
4950
- run: bundle install

0 commit comments

Comments
 (0)