Skip to content

Commit f3f8755

Browse files
committed
Add rake version
1 parent af33536 commit f3f8755

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.circleci/config.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,29 +28,29 @@ jobs:
2828
# Reference: https://www.benpickles.com/articles/76-better-ruby-gem-caching-on-circleci
2929
- restore_cache:
3030
keys:
31-
- bundler-{{ checksum "Gemfile.lock" }}
31+
- bundler-{{ checksum "Gemfile.lock" }}-v2
3232
- bundler-
3333

3434
- run: bundle install --clean --path vendor/bundle
3535

3636
- save_cache:
37-
key: bundler-{{ checksum "Gemfile.lock" }}
37+
key: bundler-{{ checksum "Gemfile.lock" }}-v2
3838
paths:
3939
- vendor/bundle
4040

4141
# Cache Dependencies
4242
- type: cache-save
4343
name: Store bundle cache
44-
key: tutor_virtual-{{ checksum "Gemfile.lock" }}
44+
key: tutor_virtual-{{ checksum "Gemfile.lock" }}-v2
4545
paths:
4646
- vendor/bundle
4747

48-
# # Bundle install dependencies
49-
- run: bundle install
50-
5148
# Wait for DB
5249
- run: dockerize -wait tcp://localhost:5432 -timeout 1m
5350

51+
# # Bundle install dependencies
52+
- run: bundle install
53+
5454
- run: rake db:create # creates the database
5555
- run: rake db:migrate
5656

0 commit comments

Comments
 (0)