You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
795 B
28 lines
795 B
version: 2.49.90.{build}
|
|
|
|
os: Visual Studio 2015
|
|
|
|
environment:
|
|
matrix:
|
|
- IdeVersion: VS2015
|
|
#- IdeVersion: Mono
|
|
SKIP_PAUSE: TRUE
|
|
ARCHIVE_WITH_PDB: TRUE
|
|
|
|
build:
|
|
verbosity: minimal
|
|
|
|
cache:
|
|
#- packages -> **\packages.config # preserve "packages" directory in the root of build folder but will reset it if packages.config is modified
|
|
- packages\WiX.3.10.3 -> Setup\packages.config
|
|
- Setup\cache -> Setup\DownloadExternals.cmd
|
|
|
|
install:
|
|
- cmd: git submodule update --init --recursive
|
|
|
|
build_script:
|
|
- ps: |
|
|
Write-Output "Platform: $env:IdeVersion"
|
|
& Setup\BuildInstallers.$env:IdeVersion.cmd
|
|
if ($LastExitCode -ne 0) { $host.SetShouldExit($LastExitCode) }
|
|
Get-ChildItem Setup\GitExtensions-*-Mono.zip | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name }
|