[GitHub] Remove redundant cache key prefix (#76914)

Remove the redundant sccache cache key prefix.
This prefix is already added by the ccache action, which results in
cache keys like "sccache-sccache-ubuntu-...".

See the following source lines as proof:

2a51777f6f/src/restore.ts (L22-L23)
This commit is contained in:
Craig Hesling
2024-01-06 01:15:10 -05:00
committed by GitHub
parent 602c8fa2d8
commit cf02e6e710

View File

@@ -85,7 +85,7 @@ jobs:
# enough cache space for all the tests to run at once and still
# fit under the 10 GB limit.
max-size: 500M
key: sccache-${{ matrix.os }}
key: ${{ matrix.os }}
variant: sccache
- name: Build and Test
uses: llvm/actions/build-test-llvm-project@main