We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 90ade48 commit 0b88587Copy full SHA for 0b88587
1 file changed
.github/workflows/ci-pr-validation.yaml
@@ -60,14 +60,12 @@ jobs:
60
- name: Restore vcpkg and its artifacts.
61
uses: actions/cache@v4
62
id: vcpkg-cache
63
+ continue-on-error: true
64
with:
65
path: |
- ${{ env.VCPKG_ROOT }}
66
- vcpkg_installed
67
- !${{ env.VCPKG_ROOT }}/.git
68
- !${{ env.VCPKG_ROOT }}/buildtrees
69
- !${{ env.VCPKG_ROOT }}/packages
70
- !${{ env.VCPKG_ROOT }}/downloads
+ ${{ github.workspace }}/vcpkg_installed
+ ${{ env.VCPKG_ROOT }}/installed
+ ${{ env.VCPKG_ROOT }}/downloads
71
key: ${{ runner.os }}-${{ matrix.triplet }}-${{ hashFiles('vcpkg.json') }}
72
restore-keys: ${{ runner.os }}-${{ matrix.triplet }}-
73
0 commit comments