Skip to content

Commit

Permalink
nuke the cache
Browse files Browse the repository at this point in the history
  • Loading branch information
chris48s committed Sep 5, 2024
1 parent 23b6fbf commit 4b75902
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ jobs:
- checkout
- restore_cache:
keys:
- v3-dependencies-{{ checksum "Pipfile.lock" }}
- v3-dependencies-default
- v4-dependencies-{{ checksum "Pipfile.lock" }}
- v4-dependencies-default
- run: &install-pipenv pip install -U pipenv pip --quiet --no-input
- run: pipenv sync --dev
- run: pipenv check # before save_cache so an insecure cache is never saved
Expand All @@ -26,7 +26,7 @@ jobs:
when: on_success
paths:
- ~/.local/share/virtualenvs/
key: v3-dependencies-{{ checksum "Pipfile.lock" }}
key: v4-dependencies-{{ checksum "Pipfile.lock" }}

run-tests:
docker:
Expand All @@ -36,8 +36,8 @@ jobs:
- checkout
- restore_cache:
keys:
- v3-dependencies-{{ checksum "Pipfile.lock" }}
- v3-dependencies-default
- v4-dependencies-{{ checksum "Pipfile.lock" }}
- v4-dependencies-default
- run: *install-pipenv
- run:
name: Ruff Check
Expand Down Expand Up @@ -101,8 +101,8 @@ jobs:
at: ~/repo/
- restore_cache:
keys:
- v3-dependencies-{{ checksum "Pipfile.lock" }}
- v3-dependencies-default
- v4-dependencies-{{ checksum "Pipfile.lock" }}
- v4-dependencies-default
- run: *install-pipenv
- run: pip install aws-sam-cli

Expand Down

0 comments on commit 4b75902

Please sign in to comment.