From 4c8eddc5a323ad9c9ce0196e119a2c1ff0847f05 Mon Sep 17 00:00:00 2001 From: "alexey.lysiuk" Date: Wed, 5 Jun 2019 12:44:52 +0300 Subject: [PATCH] - simplified AppVeyor configuration Visual Studio 2015 and 2019, Release only, no more WinXP toolset, reorder targets by importance Visual Studio 2017 builds are now verified by Travis only --- .appveyor.yml | 34 ++++++++++------------------------ 1 file changed, 10 insertions(+), 24 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index 97d19e446..4bf214251 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -6,37 +6,23 @@ branches: clone_depth: 10 +image: + - Visual Studio 2019 + - Visual Studio 2015 + environment: matrix: - - GENERATOR: "Visual Studio 14 2015" - CONFIGURATION: Release - TOOLSET: v140_xp - APPVEYOR_BUILD_WORKER_IMAGE: "Visual Studio 2015" - - GENERATOR: "Visual Studio 14 2015 Win64" - CONFIGURATION: Release - TOOLSET: v140 - APPVEYOR_BUILD_WORKER_IMAGE: "Visual Studio 2015" - - GENERATOR: "Visual Studio 15 2017" - CONFIGURATION: Release - TOOLSET: v141_xp - APPVEYOR_BUILD_WORKER_IMAGE: "Visual Studio 2017" - - GENERATOR: "Visual Studio 15 2017 Win64" - CONFIGURATION: Release - TOOLSET: v141 - APPVEYOR_BUILD_WORKER_IMAGE: "Visual Studio 2017" - - GENERATOR: "Visual Studio 15 2017 Win64" - CONFIGURATION: Debug - TOOLSET: v141 - APPVEYOR_BUILD_WORKER_IMAGE: "Visual Studio 2017" - + - ARCH: x64 + - ARCH: Win32 + build_script: - md build - cd build - - cmake -G "%GENERATOR%" -T "%TOOLSET%" -DPK3_QUIET_ZIPDIR=YES .. - - cmake --build . --config "%CONFIGURATION%" -- -maxcpucount -verbosity:minimal + - cmake -A %ARCH% -DPK3_QUIET_ZIPDIR=YES .. + - cmake --build . --config Release -- -maxcpucount -verbosity:minimal after_build: - - set OUTPUT_DIR=%APPVEYOR_BUILD_FOLDER%\build\%CONFIGURATION%\ + - set OUTPUT_DIR=%APPVEYOR_BUILD_FOLDER%\build\Release\ - 7z a ..\gzdoom.zip "%OUTPUT_DIR%gzdoom.exe" "%OUTPUT_DIR%*.pk3" artifacts: