Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 5f50106

Browse files
committedMar 12, 2025·
ci,macos: specify lib shared type in gh cache
1 parent ad75fa9 commit 5f50106

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎.github/workflows/everything.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -323,9 +323,9 @@ jobs:
323323
id: restore-cache
324324
with:
325325
path: .ccache
326-
key: ccache-${{ matrix.image}}-${{ matrix.compiler }}-${{ matrix.parallel }}-${{ github.sha }}
326+
key: ccache-${{ matrix.image}}-${{ matrix.compiler }}-${{ matrix.parallel }}-${{ matrix.shared }}-${{ github.sha }}
327327
restore-keys: |
328-
ccache-${{ matrix.image }}-${{ matrix.compiler }}-${{ matrix.parallel }}
328+
ccache-${{ matrix.image }}-${{ matrix.compiler }}-${{ matrix.parallel }}-${{ matrix.shared }}
329329
- name: Configure cache
330330
run: ccache -z
331331
- name: Update
@@ -342,7 +342,7 @@ jobs:
342342
id: save-cache
343343
with:
344344
path: .ccache
345-
key: ccache-${{ matrix.image }}-${{ matrix.compiler }}-${{ matrix.parallel }}-${{ github.sha }}
345+
key: ccache-${{ matrix.image }}-${{ matrix.compiler }}-${{ matrix.parallel }}-${{ matrix.shared }}-${{ github.sha }}
346346
- name: Test
347347
run: gha/scripts/ci/gh-actions/run.sh test
348348

0 commit comments

Comments
 (0)
Please sign in to comment.