Skip to content

Commit

Permalink
Update docker image version referenced in testing (#712)
Browse files Browse the repository at this point in the history
  • Loading branch information
SorenSpicknall authored Jul 8, 2022
1 parent 704c4a4 commit 6c294ed
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ jobs:
# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-python3.7-{{ checksum "requirements.txt" }}
- v1-dependencies-python10-{{ checksum "requirements.txt" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-python3.7-
- v1-dependencies-python3.10-

- run:
name: install dependencies
Expand All @@ -41,7 +41,7 @@ jobs:
- save_cache:
paths:
- ./venv
key: v1-dependencies-python3.7-{{ checksum "requirements.txt" }}
key: v1-dependencies-python3.10-{{ checksum "requirements.txt" }}

- run:
name: run tests
Expand All @@ -67,9 +67,9 @@ jobs:
# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-python3.7-{{ checksum "./docs/requirements.txt" }}
- v1-dependencies-python3.10-{{ checksum "./docs/requirements.txt" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-python3.7-
- v1-dependencies-python3.10-
- run:
name: Install dependencies
# Note that we the circleci node image installs stuff with a user "circleci", rather
Expand All @@ -81,7 +81,7 @@ jobs:
- save_cache:
paths:
- ./venv
key: v1-dependencies-python3.7-{{ checksum "./docs/requirements.txt" }}
key: v1-dependencies-python3.10-{{ checksum "./docs/requirements.txt" }}
- run:
name: Build docs
command: |
Expand All @@ -98,9 +98,9 @@ jobs:
# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-python3.7-{{ checksum "./docs/requirements.txt" }}
- v1-dependencies-python3.10-{{ checksum "./docs/requirements.txt" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-python3.7-
- v1-dependencies-python3.10-
- run:
name: Install dependencies
# Note that we the circleci node image installs stuff with a user "circleci", rather
Expand All @@ -114,7 +114,7 @@ jobs:
- save_cache:
paths:
- ./venv
key: v1-dependencies-python3.7-{{ checksum "./docs/requirements.txt" }}
key: v1-dependencies-python3.10-{{ checksum "./docs/requirements.txt" }}
- add_ssh_keys:
# This SSH key is "CircleCI Docs" in https://github.com/move-coop/parsons/settings/keys
# We need write access to the Parsons repo, so we can push the "gh-pages" branch.
Expand Down

0 comments on commit 6c294ed

Please sign in to comment.