Skip to content
1 change: 1 addition & 0 deletions .github/workflows/vcpkg_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -259,6 +259,7 @@ jobs:
- name: Set up vcpkg
run: |
git clone https://github.com/microsoft/vcpkg.git
git -C vcpkg checkout 9aee6e968f51e15ee93606f064691d8f6d228190
Copy link

Copilot AI Nov 27, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The vcpkg commit is pinned only for the Linux job. This creates inconsistency across different build jobs (android, macos, mingw, windows), which will use different versions of vcpkg. If this commit is needed to fix a test failure, it should be applied to all jobs that set up vcpkg (lines 86-89, 330-333, 388-391, and 447-450) to ensure consistent behavior across all platforms.

Suggested change
git -C vcpkg checkout 9aee6e968f51e15ee93606f064691d8f6d228190
git -C vcpkg checkout 9aee6e968f51e15ee93606f064691d8f6d228190
git -C vcpkg checkout 9aee6e968f51e15ee93606f064691d8f6d228190
git -C vcpkg checkout 9aee6e968f51e15ee93606f064691d8f6d228190
git -C vcpkg checkout 9aee6e968f51e15ee93606f064691d8f6d228190
git -C vcpkg checkout 9aee6e968f51e15ee93606f064691d8f6d228190

Copilot uses AI. Check for mistakes.
./vcpkg/bootstrap-vcpkg.sh

- name: Prepare build
Expand Down
Loading