Skip to content

Commit

Permalink
cache bump
Browse files Browse the repository at this point in the history
  • Loading branch information
molinamelendezj committed Oct 27, 2022
1 parent e7fbc2b commit 1246c5b
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .circleci/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -555,7 +555,7 @@ jobs:
path: ~/project
# Install and cache Python dependencies
- restore_cache:
key: pip<< parameters.python-version >>-cache-v11-<< pipeline.git.branch >><< pipeline.git.tag >>-{{ checksum "ci-requirements.txt" }}
key: pip<< parameters.python-version >>-cache-v12-<< pipeline.git.branch >><< pipeline.git.tag >>-{{ checksum "ci-requirements.txt" }}
- run:
name: "Install Python dependencies"
command: |
Expand All @@ -564,7 +564,7 @@ jobs:
python -m pip install --upgrade pip
python -m pip install -r ci-requirements.txt
- save_cache:
key: pip<< parameters.python-version >>-cache-v11-<< pipeline.git.branch >><< pipeline.git.tag >>-{{ checksum "ci-requirements.txt" }}
key: pip<< parameters.python-version >>-cache-v12-<< pipeline.git.branch >><< pipeline.git.tag >>-{{ checksum "ci-requirements.txt" }}
paths:
- "venv"

Expand Down Expand Up @@ -701,7 +701,7 @@ jobs:
# Install and cache Python dependencies
- restore_cache:
key: pip3.10-cache-v11-{{ checksum "ci-requirements.txt" }}
key: pip3.10-cache-v12-{{ checksum "ci-requirements.txt" }}
- run:
name: "Install Python dependencies"
command: |
Expand All @@ -710,7 +710,7 @@ jobs:
python -m pip install --upgrade pip
python -m pip install -r ci-requirements.txt
- save_cache:
key: pip3.10-cache-v11-{{ checksum "ci-requirements.txt" }}
key: pip3.10-cache-v12-{{ checksum "ci-requirements.txt" }}
paths:
- "venv"

Expand Down Expand Up @@ -750,7 +750,7 @@ jobs:
at: .
# Install and cache Python dependencies
- restore_cache:
key: pip3.10-cache-v11-{{ checksum "ci-requirements.txt" }}
key: pip3.10-cache-v12-{{ checksum "ci-requirements.txt" }}
- run:
name: "Install Python dependencies"
command: |
Expand All @@ -759,7 +759,7 @@ jobs:
python -m pip install --upgrade pip
python -m pip install -r ci-requirements.txt
- save_cache:
key: pip3.10-cache-v11-{{ checksum "ci-requirements.txt" }}
key: pip3.10-cache-v12-{{ checksum "ci-requirements.txt" }}
paths:
- "venv"
- run:
Expand All @@ -785,7 +785,7 @@ jobs:
at: .
# Install and cache Python dependencies
- restore_cache:
key: pip3.10-cache-v11-{{ checksum "ci-requirements.txt" }}
key: pip3.10-cache-v12-{{ checksum "ci-requirements.txt" }}
- run:
name: "Install Python dependencies"
command: |
Expand All @@ -794,7 +794,7 @@ jobs:
python -m pip install --upgrade pip
python -m pip install -r ci-requirements.txt
- save_cache:
key: pip3.10-cache-v11-{{ checksum "ci-requirements.txt" }}
key: pip3.10-cache-v12-{{ checksum "ci-requirements.txt" }}
paths:
- "venv"
- run:
Expand Down

0 comments on commit 1246c5b

Please sign in to comment.