Skip to content

Commit 9862f64

Browse files
tautschnigNlightNFotis
authored andcommitted
Fix ccache configuration of check-macos-12-cmake-clang-rust
The prefix lookup resulted in picking up the Release-Glucose cache from check-macos-12-cmake-clang. This cache, however, was established with Glucose as a SAT solver, which implies different compiler command lines. Consequently, there would be 0 cache hits.
1 parent 070f722 commit 9862f64

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/pull-request-check-rust-api.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -82,10 +82,10 @@ jobs:
8282
uses: actions/cache@v3
8383
with:
8484
path: .ccache
85-
key: ${{ runner.os }}-Release-${{ github.ref }}-${{ github.sha }}-PR-Rust-API
85+
key: ${{ runner.os }}-Release-Minisat-${{ github.ref }}-${{ github.sha }}-PR-Rust-API
8686
restore-keys: |
87-
${{ runner.os }}-Release-${{ github.ref }}
88-
${{ runner.os }}-Release
87+
${{ runner.os }}-Release-Minisat-${{ github.ref }}
88+
${{ runner.os }}-Release-Minisat
8989
- name: ccache environment
9090
run: |
9191
echo "CCACHE_BASEDIR=$PWD" >> $GITHUB_ENV

0 commit comments

Comments
 (0)