From 8ad9aafaa808ec713e846a79be19ccad7c1bf2da Mon Sep 17 00:00:00 2001 From: "alexey.lysiuk" Date: Fri, 21 Jun 2019 22:21:30 +0300 Subject: [PATCH] - added Debug x64 target to AppVeyor configuration --- .appveyor.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index 621ee3065..50ab5538f 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -12,16 +12,20 @@ image: environment: matrix: - ARCH: x64 + CONFIG: Release - ARCH: Win32 + CONFIG: Release + - ARCH: x64 + CONFIG: Debug build_script: - md build - cd build - cmake -A %ARCH% -DPK3_QUIET_ZIPDIR=YES .. - - cmake --build . --config Release -- -maxcpucount -verbosity:minimal + - cmake --build . --config %CONFIG% -- -maxcpucount -verbosity:minimal after_build: - - set OUTPUT_DIR=%APPVEYOR_BUILD_FOLDER%\build\Release\ + - set OUTPUT_DIR=%APPVEYOR_BUILD_FOLDER%\build\%CONFIG%\ - 7z a ..\gzdoom.zip "%OUTPUT_DIR%gzdoom.exe" "%OUTPUT_DIR%*.pk3" artifacts: