1
0
mirror of https://github.com/google/cpu_features.git synced 2025-04-27 23:22:31 +02:00

ci(appveyor): Add VS 2019 job

This commit is contained in:
Corentin Le Molgat 2021-06-25 14:52:14 +02:00 committed by Mizux
parent 0f07e4b9eb
commit 239c2e5660

View File

@ -5,6 +5,8 @@ platform: x64
environment:
matrix:
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
CMAKE_GENERATOR: "Visual Studio 16 2019"
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
CMAKE_GENERATOR: "Visual Studio 15 2017 Win64"
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
@ -15,10 +17,10 @@ matrix:
before_build:
- cmake --version
- cmake -DCMAKE_BUILD_TYPE=Debug -DBUILD_TESTING=ON -H. -Bcmake_build -G "%CMAKE_GENERATOR%"
- cmake -DCMAKE_BUILD_TYPE=Debug -DBUILD_TESTING=ON -S. -Bcmake_build -G "%CMAKE_GENERATOR%"
build_script:
- cmake --build cmake_build --config Debug --target ALL_BUILD
- cmake --build cmake_build --config Debug --target ALL_BUILD --verbose
test_script:
- cmake --build cmake_build --config Debug --target RUN_TESTS
- cmake --build cmake_build --config Debug --target RUN_TESTS --verbose