mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-10 23:01:59 +00:00
49 lines
1.3 KiB
YAML
49 lines
1.3 KiB
YAML
version: "{build}"
|
|
|
|
branches:
|
|
except:
|
|
- /^travis.*$/
|
|
|
|
clone_depth: 10
|
|
|
|
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"
|
|
|
|
build_script:
|
|
- md build
|
|
- cd build
|
|
- cmake -G "%GENERATOR%" -T "%TOOLSET%" -DPK3_QUIET_ZIPDIR=YES ..
|
|
- cmake --build . --config "%CONFIGURATION%" -- -maxcpucount -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
|