Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Workaround for breaking vcpkg changes #493

Merged
merged 15 commits into from
Jan 20, 2025
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,9 @@ jobs:
run: |
git reset --hard
git pull
# Workaround for breaking changes ("Migrate tool metadata from XML to JSON format")
git checkout 358f3893843c9d0d1b2e594183481fb68e3aa963~1
git status

# Setup a CentOS 7 container to build on Linux x64 for backwards compatibility.
- name: Start CentOS container and install toolchain
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ jobs:
cd $VCPKG_INSTALLATION_ROOT
git reset --hard
git pull
# Workaround for breaking changes ("Migrate tool metadata from XML to JSON format")
git checkout 358f3893843c9d0d1b2e594183481fb68e3aa963~1
git status

- name: Setup .NET SDK v8.0.x
uses: actions/setup-dotnet@v4
Expand Down
Loading