Skip to content

Commit

Permalink
fix(ci): use the runner architecture in the cache key
Browse files Browse the repository at this point in the history
  • Loading branch information
mayeut committed Jan 24, 2025
1 parent 595bc5b commit b2ea4e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ jobs:
uses: actions/cache@v4
with:
path: ~/.cache/auditwheel_tests
key: python${{ matrix.python }}-${{ hashFiles('**/test_manylinux.py') }}
restore-keys: python${{ matrix.python }}-
key: python${{ matrix.python }}-${{ runner.arch }}-${{ hashFiles('**/test_manylinux.py') }}
restore-keys: python${{ matrix.python }}-${{ runner.arch }}-
- name: Install CPython ${{ matrix.python }}
uses: actions/setup-python@v5
with:
Expand Down

0 comments on commit b2ea4e4

Please sign in to comment.