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.
X64-Linux
ARM64-macOS
1 parent 41819ef commit 5e29e23Copy full SHA for 5e29e23
.github/workflows/github-actions.yml
@@ -55,7 +55,11 @@ jobs:
55
56
- name: Install vcpkg ports (Windows)
57
run: ./vcpkg/vcpkg install --triplet "${{ runner.arch }}-${{ runner.os }}" "$(jq '.dependencies[] | select(type == "string")')"
58
- if: steps.cache-vcpkg.outputs.cache-hit != 'true'
+ if: matrix.os == 'windows-latest' && steps.cache-vcpkg.outputs.cache-hit != 'true'
59
+
60
+ - name: Install vcpkg ports (macOS, Linux)
61
+ run: ./vcpkg/vcpkg install "$(jq '.dependencies[] | select(type == "string")')"
62
+ if: matrix.os != 'windows-latest' && steps.cache-vcpkg.outputs.cache-hit != 'true'
63
64
- name: configure (with vcpkg on Windows)
65
working-directory: ./build
0 commit comments