Skip to content

Commit 89d9e67

Browse files
committed
Reconfigure circleci
1 parent 8282a52 commit 89d9e67

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

.circleci/config.yml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -18,32 +18,32 @@ jobs:
1818
steps:
1919
- checkout
2020
# 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" }}
2424

2525
- run: gem install bundler:${BUNDLER_VERSION}
2626

2727
# Caching Ruby Gems
2828
# 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-
3333

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

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
4040

4141
# 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
4747

4848
# Bundle install dependencies
4949
- run: bundle install

0 commit comments

Comments
 (0)