Merge pull request #2759 from derekpierre/update-cache

Increment cache version to force rebuild of dependencies.
pull/2766/head
Derek Pierre 2021-07-26 12:17:38 -04:00 committed by GitHub
commit b8ac12cb23
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -419,7 +419,7 @@ commands:
- run: sudo chown -R circleci:circleci /usr/local/bin
- run: sudo chown -R circleci:circleci /usr/local/lib/python3.7/site-packages
- save_cache:
key: pip-v6-{{ .Branch }}-{{ checksum "Pipfile.lock" }}
key: pip-v7-{{ .Branch }}-{{ checksum "Pipfile.lock" }}
paths:
- "~/.local/bin"
- "~/.local/lib/python3.7/site-packages"
@ -434,7 +434,7 @@ commands:
- run: sudo chown -R circleci:circleci /usr/local/bin
- run: sudo chown -R circleci:circleci /usr/local/lib/python3.7/site-packages
- restore_cache: # ensure this step occurs *before* installing dependencies
key: pip-v6-{{ .Branch }}-{{ checksum "Pipfile.lock" }}
key: pip-v7-{{ .Branch }}-{{ checksum "Pipfile.lock" }}
- restore_cache:
key: solc-v2-{{ checksum "nucypher/blockchain/eth/sol/__conf__.py" }}