Use windows-2019 builders. (#813)

Specify the windows-2019 builders for windows builds to avoid breaking
due to visual studio 16 2019 not being present in the windows-2022 images.
This commit is contained in:
Tom Finegan 2022-02-15 17:02:56 -08:00 committed by GitHub
parent 60fc6629ae
commit 0d1633e3cc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -84,7 +84,7 @@ jobs:
draco_test_command: ./draco_tests
- test_name: windows-msvc-release-shared
os: windows-latest
os: windows-2019
cmake_configure_command: |-
cmake .. -G "Visual Studio 16 2019" \
-DBUILD_SHARED_LIBS=ON \
@ -94,7 +94,7 @@ jobs:
draco_test_command: Release/draco_tests
- test_name: windows-msvc-release-static
os: windows-latest
os: windows-2019
cmake_configure_command: |-
cmake .. -G "Visual Studio 16 2019" \
-DBUILD_SHARED_LIBS=OFF \
@ -104,7 +104,7 @@ jobs:
draco_test_command: Release/draco_tests
- test_name: windows-make-release-shared
os: windows-latest
os: windows-2019
cmake_configure_command: |-
cmake .. -G "MinGW Makefiles" \
-DBUILD_SHARED_LIBS=ON \
@ -116,7 +116,7 @@ jobs:
draco_test_command: ./draco_tests
- test_name: windows-make-release-static
os: windows-latest
os: windows-2019
cmake_configure_command: |-
cmake .. -G "MinGW Makefiles" \
-DBUILD_SHARED_LIBS=OFF \
@ -173,11 +173,11 @@ jobs:
test_command: python3 test.py -v -G Xcode
- test_name: windows-make
os: windows-latest
os: windows-2019
test_command: python3 test.py -v -G "MinGW Makefiles"
- test_name: windows-msvc
os: windows-latest
os: windows-2019
test_command: python3 test.py -v -G "Visual Studio 16 2019"
name: install-test-${{ matrix.test_name }}