Skip to content

Commit

Permalink
update meps caching in ci/cd
Browse files Browse the repository at this point in the history
  • Loading branch information
leifdenby committed Jan 28, 2025
1 parent 9640527 commit ca56005
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 20 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci-pdm-install-and-test-cpu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ jobs:
- name: Load cache data
uses: actions/cache/restore@v4
with:
path: tests/datastore_examples/npyfilesmeps/meps_example_reduced.zip
key: ${{ runner.os }}-meps-reduced-example-data-v0.2.0
path: tests/datastore_examples/npyfilesmeps/meps_example_reduced.tar.gz
key: ${{ runner.os }}-meps-reduced-example-data-v0.3.0
restore-keys: |
${{ runner.os }}-meps-reduced-example-data-v0.2.0
${{ runner.os }}-meps-reduced-example-data-v0.3.0
- name: Run tests
run: |
Expand All @@ -51,5 +51,5 @@ jobs:
- name: Save cache data
uses: actions/cache/save@v4
with:
path: tests/datastore_examples/npyfilesmeps/meps_example_reduced.zip
key: ${{ runner.os }}-meps-reduced-example-data-v0.2.0
path: tests/datastore_examples/npyfilesmeps/meps_example_reduced.tar.gz
key: ${{ runner.os }}-meps-reduced-example-data-v0.3.0
10 changes: 5 additions & 5 deletions .github/workflows/ci-pdm-install-and-test-gpu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ jobs:
- name: Load cache data
uses: actions/cache/restore@v4
with:
path: tests/datastore_examples/npyfilesmeps/meps_example_reduced.zip
key: ${{ runner.os }}-meps-reduced-example-data-v0.2.0
path: tests/datastore_examples/npyfilesmeps/meps_example_reduced.tar.gz
key: ${{ runner.os }}-meps-reduced-example-data-v0.3.0
restore-keys: |
${{ runner.os }}-meps-reduced-example-data-v0.2.0
${{ runner.os }}-meps-reduced-example-data-v0.3.0
- name: Run tests
run: |
Expand All @@ -56,5 +56,5 @@ jobs:
- name: Save cache data
uses: actions/cache/save@v4
with:
path: tests/datastore_examples/npyfilesmeps/meps_example_reduced.zip
key: ${{ runner.os }}-meps-reduced-example-data-v0.2.0
path: tests/datastore_examples/npyfilesmeps/meps_example_reduced.tar.gz
key: ${{ runner.os }}-meps-reduced-example-data-v0.3.0
10 changes: 5 additions & 5 deletions .github/workflows/ci-pip-install-and-test-cpu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ jobs:
- name: Load cache data
uses: actions/cache/restore@v4
with:
path: tests/datastore_examples/npyfilesmeps/meps_example_reduced.zip
key: ${{ runner.os }}-meps-reduced-example-data-v0.2.0
path: tests/datastore_examples/npyfilesmeps/meps_example_reduced.tar.gz
key: ${{ runner.os }}-meps-reduced-example-data-v0.3.0
restore-keys: |
${{ runner.os }}-meps-reduced-example-data-v0.2.0
${{ runner.os }}-meps-reduced-example-data-v0.3.0
- name: Run tests
run: |
Expand All @@ -41,5 +41,5 @@ jobs:
- name: Save cache data
uses: actions/cache/save@v4
with:
path: tests/datastore_examples/npyfilesmeps/meps_example_reduced.zip
key: ${{ runner.os }}-meps-reduced-example-data-v0.2.0
path: tests/datastore_examples/npyfilesmeps/meps_example_reduced.tar.gz
key: ${{ runner.os }}-meps-reduced-example-data-v0.3.0
10 changes: 5 additions & 5 deletions .github/workflows/ci-pip-install-and-test-gpu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ jobs:
- name: Load cache data
uses: actions/cache/restore@v4
with:
path: tests/datastore_examples/npyfilesmeps/meps_example_reduced.zip
key: ${{ runner.os }}-meps-reduced-example-data-v0.2.0
path: tests/datastore_examples/npyfilesmeps/meps_example_reduced.tar.gz
key: ${{ runner.os }}-meps-reduced-example-data-v0.3.0
restore-keys: |
${{ runner.os }}-meps-reduced-example-data-v0.2.0
${{ runner.os }}-meps-reduced-example-data-v0.3.0
- name: Run tests
run: |
Expand All @@ -46,5 +46,5 @@ jobs:
- name: Save cache data
uses: actions/cache/save@v4
with:
path: tests/datastore_examples/npyfilesmeps/meps_example_reduced.zip
key: ${{ runner.os }}-meps-reduced-example-data-v0.2.0
path: tests/datastore_examples/npyfilesmeps/meps_example_reduced.tar.gz
key: ${{ runner.os }}-meps-reduced-example-data-v0.3.0

0 comments on commit ca56005

Please sign in to comment.