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 5866216 commit 7dc2adaCopy full SHA for 7dc2ada
.github/actions/install-vcpkg/action.yml
@@ -26,6 +26,9 @@ runs:
26
shell: bash
27
id: vcpkg
28
run: |
29
+ # Note, this is a workaround to avoid building debug versions that are not used in the build process
30
+ # TODO: Find a cleaner way to do this
31
+ find "$(pwd)/vcpkg/triplets/" -name "*.cmake" -type f -exec sh -c "echo \"set(VCPKG_BUILD_TYPE release)\" >> {}" \;
32
./vcpkg/bootstrap-vcpkg.sh
33
echo "$(pwd)/vcpkg" >> $GITHUB_PATH
34
echo "VCPKG_ROOT=$(pwd)/vcpkg" >> $GITHUB_ENV
0 commit comments