diff options
author | Colomban Wendling <[email protected]> | 2025-03-11 23:39:41 +0100 |
---|---|---|
committer | Colomban Wendling <[email protected]> | 2025-03-12 09:45:10 +0100 |
commit | fc2c8af52ef239f484a47b2f26e6064db984610e (patch) | |
tree | 1b03fae0f7bc281ecd893354d2f4a3511a7d1967 | |
parent | 1b5aef7738a53ab76ef7eea9001997fa257d4a11 (diff) | |
download | mate-panel-fc2c8af52ef239f484a47b2f26e6064db984610e.tar.bz2 mate-panel-fc2c8af52ef239f484a47b2f26e6064db984610e.tar.xz |
github-actions: Cache ccache per-job
Otherwise different jobs seem to overwrite each other, loosing part of
their cache.
-rw-r--r-- | .github/workflows/build.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b6709486..62498f61 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -162,6 +162,8 @@ jobs: # Setup ccache cache - name: ccache uses: hendrikmuhs/[email protected] + with: + key: ${{ github.job }}-${{ matrix.container }}-${{ matrix.cc }} # Cache the build of the mate-desktop dependency - name: Cache mate-desktop v${{env.MATE_PANEL_DEP}} dependency |