Skip to content

Commit 7f96b25

Browse files
authored
Merge pull request #7522 from tautschnig/bugfixes/cache-keys
Fix ccache restore key for check-macos-12-cmake-clang
2 parents a8fefa5 + 358386e commit 7f96b25

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/pull-request-checks.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -521,10 +521,10 @@ jobs:
521521
uses: actions/cache@v3
522522
with:
523523
path: .ccache
524-
key: ${{ runner.os }}-Release-Glucose${{ github.ref }}-${{ github.sha }}-PR
524+
key: ${{ runner.os }}-Release-Glucose-${{ github.ref }}-${{ github.sha }}-PR
525525
restore-keys: |
526-
${{ runner.os }}-Release-Glucose${{ github.ref }}
527-
${{ runner.os }}-Release
526+
${{ runner.os }}-Release-Glucose-${{ github.ref }}
527+
${{ runner.os }}-Release-Glucose
528528
- name: ccache environment
529529
run: |
530530
echo "CCACHE_BASEDIR=$PWD" >> $GITHUB_ENV

0 commit comments

Comments
 (0)