From 69dc2ba2460b0ec62ee343a400e201f194bd2ebf Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 9 Mar 2026 00:45:22 +0000 Subject: [PATCH] Fix vcpkg install step to run from repo root so vcpkg.json manifest is found Co-authored-by: Valorith <76063792+Valorith@users.noreply.github.com> --- .github/workflows/build.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 731c960ab..a460f702d 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -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..."