From 132ea30f0d50cfeed092c40ddac1aa56827d8df7 Mon Sep 17 00:00:00 2001 From: "alexey.lysiuk" Date: Mon, 8 May 2017 15:02:31 +0300 Subject: [PATCH] Updated AppVeyor configuration Added packaging of build artifact which includes executable and .pk3's Removed obsolete environment variables for dependencies Permalinks to the last successful builds: Win32 Release: https://ci.appveyor.com/api/projects/coelckers/gzdoom/artifacts/gzdoom.zip?branch=master&job=Configuration%3A%20Release%3B%20Platform%3A%20Win32 x64 Release: https://ci.appveyor.com/api/projects/coelckers/gzdoom/artifacts/gzdoom.zip?branch=master&job=Configuration%3A%20Release%3B%20Platform%3A%20x64 Win32 Debug: https://ci.appveyor.com/api/projects/coelckers/gzdoom/artifacts/gzdoom.zip?branch=master&job=Configuration%3A%20Debug%3B%20Platform%3A%20Win32 x64 Debug: https://ci.appveyor.com/api/projects/coelckers/gzdoom/artifacts/gzdoom.zip?branch=master&job=Configuration%3A%20Debug%3B%20Platform%3A%20x64 --- .appveyor.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index c02cfca649..48b51af0b1 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -21,8 +21,6 @@ before_build: - cd build - if "%PLATFORM%"=="Win32" set CMAKE_GENERATOR_NAME=Visual Studio 14 2015 - if "%PLATFORM%"=="x64" set CMAKE_GENERATOR_NAME=Visual Studio 14 2015 Win64 - - set DEPS_INCLUDE_DIR=%APPVEYOR_BUILD_FOLDER%\ci_deps_win\include - - set DEPS_LIB_DIR=%APPVEYOR_BUILD_FOLDER%\ci_deps_win\lib\%PLATFORM% - cmake -G "%CMAKE_GENERATOR_NAME%" -T "v140_xp" -DCMAKE_BUILD_TYPE="%CONFIGURATION%" .. @@ -32,6 +30,13 @@ build: parallel: true verbosity: minimal +after_build: + - set OUTPUT_DIR=%APPVEYOR_BUILD_FOLDER%\build\%CONFIGURATION%\ + - 7z a ..\gzdoom.zip "%OUTPUT_DIR%gzdoom.exe" "%OUTPUT_DIR%*.pk3" + +artifacts: + - path: gzdoom.zip + notifications: - provider: Email on_build_success: false