File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -180,9 +180,9 @@ jobs:
180
180
id : restore-cache
181
181
with :
182
182
path : .ccache
183
- key : ccache-${{ matrix.os }}-${{ matrix.compiler }}-${{ matrix.parallel }}-${{ github.sha }}
183
+ key : ccache-${{ matrix.os }}-${{ matrix.compiler }}-${{ matrix.parallel }}${{ matrix.shared == 'static' && '-static' || ''}} -${{ github.sha }}
184
184
restore-keys : |
185
- ccache-${{ matrix.os }}-${{ matrix.compiler }}-${{ matrix.parallel }}
185
+ ccache-${{ matrix.os }}-${{ matrix.compiler }}-${{ matrix.parallel }}${{ matrix.shared == 'static' && '-static' || ''}}
186
186
- name : Configure cache
187
187
run : ccache -z
188
188
- name : Setup
@@ -201,7 +201,7 @@ jobs:
201
201
id : save-cache
202
202
with :
203
203
path : .ccache
204
- key : ccache-${{ matrix.os }}-${{ matrix.compiler }}-${{ matrix.parallel }}-${{ github.sha }}
204
+ key : ccache-${{ matrix.os }}-${{ matrix.compiler }}-${{ matrix.parallel }}${{ matrix.shared == 'static' && '-static' || ''}} -${{ github.sha }}
205
205
- name : Test
206
206
if : ${{ matrix.constrains != 'build_only' }}
207
207
run : gha/scripts/ci/gh-actions/run.sh test
You can’t perform that action at this time.
0 commit comments