Skip to content

Commit

Permalink
Create new cache
Browse files Browse the repository at this point in the history
Why: So that circle CI caches builds with new gems included.
  • Loading branch information
gingermusketeer committed Apr 27, 2019
1 parent 2f9668f commit b8fa0d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Expand Up @@ -15,7 +15,7 @@
# Restore bundle cache
- restore_cache:
keys:
- bundler-packages-{{ checksum "ruby-version-for-ci.txt" }}-{{ checksum "rufo.gemspec" }}-{{ checksum "bin/verify-sample-code" }}
- bundler-packages-v2-{{ checksum "ruby-version-for-ci.txt" }}-{{ checksum "rufo.gemspec" }}-{{ checksum "bin/verify-sample-code" }}

- run:
name: Bundle Install
Expand Down Expand Up @@ -44,7 +44,7 @@
# Store bundle cache
- save_cache:
key: bundler-packages-{{ checksum "ruby-version-for-ci.txt" }}-{{ checksum "rufo.gemspec" }}-{{ checksum "bin/verify-sample-code" }}
key: bundler-packages-v2-{{ checksum "ruby-version-for-ci.txt" }}-{{ checksum "rufo.gemspec" }}-{{ checksum "bin/verify-sample-code" }}
paths:
- vendor/bundle
- Gemfile.lock
Expand Down

0 comments on commit b8fa0d3

Please sign in to comment.