Skip to content
This repository has been archived by the owner on Nov 7, 2023. It is now read-only.

Commit

Permalink
Be sure to checksum Gemfile, not Gemfile.lock in Circle config
Browse files Browse the repository at this point in the history
  • Loading branch information
jdee committed Oct 18, 2017
1 parent 96dedb5 commit 45b6392
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-{{ checksum "Gemfile.lock" }}
- v1-dependencies-{{ checksum "Gemfile" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-

Expand All @@ -29,7 +29,7 @@ jobs:
- save_cache:
paths:
- ./venv
key: v1-dependencies-{{ checksum "Gemfile.lock" }}
key: v1-dependencies-{{ checksum "Gemfile" }}

# run tests!
- run:
Expand Down

0 comments on commit 45b6392

Please sign in to comment.