Fix Windows CI: update vcpkg dependency bundle.

This commit is contained in:
Sergio Benitez 2024-08-15 02:18:54 -07:00
parent 6484c62132
commit e41b5f469e
1 changed files with 2 additions and 1 deletions

View File

@ -76,13 +76,14 @@ jobs:
- name: Install Native Dependencies (Windows)
if: matrix.platform.name == 'Windows'
run: |
curl -fsLS -o vcpkg.7z https://blob.rocket.rs/vcpkg-2019-07-05.7z
curl -fsLS -o vcpkg.7z https://blob.rocket.rs/vcpkg-2024-08-16.7z
7z x vcpkg.7z -y -bb0
xcopy .\vcpkg $env:VCPKG_INSTALLATION_ROOT /s /e /h /y /q
vcpkg integrate install
echo "VCPKGRS_DYNAMIC=1" >> "$env:GITHUB_ENV"
echo "VCPKG_ROOT=$env:VCPKG_INSTALLATION_ROOT" >> "$env:GITHUB_ENV"
echo "$env:VCPKG_INSTALLATION_ROOT\installed\x64-windows\lib" >> "$env:GITHUB_PATH"
echo "MYSQLCLIENT_VERSION=8.0.39" >> "$env:GITHUB_ENV"
- name: Install NASM (Windows)
if: matrix.platform.name == 'Windows'