Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 10 additions & 4 deletions .github/workflows/dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,11 @@ jobs:
if: steps.ccache.outputs.variant == 'ccache'
uses: hendrikmuhs/[email protected]
with:
key: ${{ matrix.os }}-${{ matrix.python_version }}
variant: ccache
key: ${{ matrix.os }}-${{ matrix.python_version }}-${{ hashFiles('**/pyproject.toml') }}
restore-keys: |
${{ matrix.os }}-${{ matrix.python_version }}
append-timestamp: false
variant: ccache

- name: Setup sccache
if: steps.ccache.outputs.variant == 'sccache'
Expand Down Expand Up @@ -188,8 +191,11 @@ jobs:
- name: Setup ccache
uses: hendrikmuhs/[email protected]
with:
key: ${{ matrix.os.container }}
variant: ccache
key: ${{ matrix.os.container }}-${{ hashFiles('**/pyproject.toml') }}
restore-keys: |
${{ matrix.os.container }}
append-timestamp: false
variant: ccache

- name: Install setuptools + wheel
run: |
Expand Down