We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 65ae422 commit c0ccfecCopy full SHA for c0ccfec
.github/workflows/build-on-windows.yml
@@ -57,9 +57,15 @@ jobs:
57
- name: Install CMake and Ninja
58
uses: lukka/get-cmake@latest
59
60
- - name: Setup vcpkg (optionally from cache)
+ - name: Setup vcpkg
61
uses: lukka/run-vcpkg@v11
62
63
+ # lukka/run-vcpkg@v11 does not have a working cache implementation.
64
+ - uses: actions/cache@v4
65
+ with:
66
+ path: ${{env.VCPKG_DEFAULT_BINARY_CACHE}}
67
+ key: vcpkg-cache-${{hashFiles('vcpkg.json', 'vcpkg\vcpkgLastBuiltCommitId')}}
68
+
69
- name: Configure application (Debug, Release
70
uses: lukka/run-cmake@v10
71
with:
0 commit comments