File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -117,7 +117,9 @@ jobs:
117
117
- name : Prepare sccache timestamp
118
118
id : cache_key
119
119
run : |
120
- echo "SCCACHE_KEY=${{ matrix.target }}-${{ env.TOOLCHAIN_CHANNEL }}-sccache-v13-$(date +'%Y-%m-%d-%I-%M-%S')" >> $GITHUB_OUTPUT
120
+ export SCCACHE_KEY_PREFIX="${{ matrix.target }}-${{ env.TOOLCHAIN_CHANNEL }}-sccache-v14-"
121
+ echo "SCCACHE_KEY_PREFIX=$SCCACHE_KEY_PREFIX" >> $GITHUB_OUTPUT
122
+ echo "SCCACHE_KEY=$SCCACHE_KEY_PREFIX$(date +'%Y-%m-%d-%I-%M-%S')" >> $GITHUB_OUTPUT
121
123
122
124
- name : Check Xcode version
123
125
if : ${{ startsWith(matrix.build_os, 'macos-') }}
@@ -130,7 +132,7 @@ jobs:
130
132
path : build-cache
131
133
key : ${{ steps.cache_key.outputs.SCCACHE_KEY }}
132
134
restore-keys : |
133
- ${{ matrix.target }}-sccache-v13-
135
+ ${{ steps.cache_key.outputs.SCCACHE_KEY_PREFIX }}
134
136
135
137
- name : Clean build directory
136
138
if : ${{ matrix.clean_build_dir }}
You can’t perform that action at this time.
0 commit comments