mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 14:51:40 +00:00
132ea30f0d
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
44 lines
848 B
YAML
44 lines
848 B
YAML
version: "{build}"
|
|
|
|
branches:
|
|
except:
|
|
- /^travis.*$/
|
|
|
|
clone_depth: 10
|
|
|
|
os: Visual Studio 2015
|
|
|
|
platform:
|
|
- Win32
|
|
- x64
|
|
|
|
configuration:
|
|
- Debug
|
|
- Release
|
|
|
|
before_build:
|
|
- md 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
|
|
- cmake -G "%CMAKE_GENERATOR_NAME%" -T "v140_xp"
|
|
-DCMAKE_BUILD_TYPE="%CONFIGURATION%"
|
|
..
|
|
|
|
build:
|
|
project: build\GZDoom.sln
|
|
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
|
|
on_build_failure: false
|
|
on_build_status_changed: false
|