From 239c2e566065c1e6d9cb95b61eb8d3a4a8b27b58 Mon Sep 17 00:00:00 2001 From: Corentin Le Molgat Date: Fri, 25 Jun 2021 14:52:14 +0200 Subject: [PATCH] ci(appveyor): Add VS 2019 job --- appveyor.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index f18635a..649b304 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -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