Merge pull request #62 from Valorith/copilot/sub-pr-55

Fix vcpkg CI install step to run from repo root for manifest mode
This commit is contained in:
Vayle 2026-03-08 20:51:45 -04:00 committed by GitHub
commit 1cd6249aef
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -64,12 +64,11 @@ jobs:
working-directory: ${{ github.workspace }}
run: |
set -e
cd submodules/vcpkg
./bootstrap-vcpkg.sh -disableMetrics
./submodules/vcpkg/bootstrap-vcpkg.sh -disableMetrics
for i in 1 2 3 4 5; do
echo "vcpkg install attempt $i..."
if ./vcpkg install --triplet x64-linux; then
if ./submodules/vcpkg/vcpkg install --triplet x64-linux; then
exit 0
fi
echo "vcpkg install failed; sleeping before retry..."