Cxbx-Reloaded/appveyor.yml

41 lines
782 B
YAML
Raw Normal View History

# Documentation is here: https://www.appveyor.com/docs/appveyor-yml/
2017-02-15 20:37:47 +00:00
init:
- ps: Update-AppveyorBuild -Version "$env:appveyor_repo_commit"
2017-02-15 20:37:47 +00:00
branches:
only:
- master
2017-05-02 15:10:08 +00:00
image:
- Visual Studio 2017
2017-02-15 20:37:47 +00:00
configuration:
# The builds are run in this order
# Each configuration will compile all below platforms
- Release
- Debug
2018-02-13 23:44:39 +00:00
platform:
# Build the debugger and managed deps
# This must be done first!
2018-02-13 23:44:39 +00:00
- Any CPU
# Build native binaries
2018-02-13 23:44:39 +00:00
- Win32
2017-02-15 20:37:47 +00:00
build:
project: build/win32/Cxbx.sln
parallel: true
verbosity: minimal
before_package:
# Pass in the build configuration
- cmd: GatherArtifacts.bat %CONFIGURATION%
2017-02-15 20:37:47 +00:00
artifacts:
- path: export/*.zip
2017-07-13 19:42:58 +00:00
install:
# Git clone happens between init and install
2017-12-07 14:02:31 +00:00
- cmd: git submodule update --init --recursive