2016-06-04 17:30:50 +00:00
|
|
|
version: 1.0.{build}-{branch}
|
2015-12-31 01:10:19 +00:00
|
|
|
|
|
|
|
branches:
|
2018-11-18 19:50:26 +00:00
|
|
|
except:
|
|
|
|
- gh-pages
|
2019-11-25 10:48:30 +00:00
|
|
|
- master
|
2015-12-31 01:10:19 +00:00
|
|
|
|
|
|
|
skip_tags: true
|
|
|
|
|
2017-12-17 06:12:19 +00:00
|
|
|
skip_commits:
|
|
|
|
files:
|
|
|
|
- docs/*
|
2019-11-25 10:48:30 +00:00
|
|
|
- docs/*/*
|
2019-05-06 22:29:25 +00:00
|
|
|
- .github/*
|
2019-11-25 10:48:30 +00:00
|
|
|
- .github/*/*
|
2017-12-17 06:12:19 +00:00
|
|
|
- LICENSE
|
|
|
|
- README.md
|
2019-10-20 20:51:32 +00:00
|
|
|
- .azure-pipelines.yml
|
2018-11-18 19:50:26 +00:00
|
|
|
- .travis.yml
|
|
|
|
|
|
|
|
skip_branch_with_pr: true
|
2017-12-17 06:12:19 +00:00
|
|
|
|
2017-12-06 00:11:59 +00:00
|
|
|
pull_requests:
|
|
|
|
do_not_increment_build_number: true
|
2015-12-31 01:10:19 +00:00
|
|
|
|
2019-05-25 03:11:13 +00:00
|
|
|
os: Visual Studio 2019
|
2015-12-31 01:10:19 +00:00
|
|
|
|
|
|
|
init:
|
|
|
|
- git config --global core.autocrlf input
|
|
|
|
|
|
|
|
install:
|
2019-10-20 20:51:32 +00:00
|
|
|
- xb setup
|
2015-12-31 01:10:19 +00:00
|
|
|
|
2016-06-13 01:05:58 +00:00
|
|
|
build_script:
|
2019-10-20 20:51:32 +00:00
|
|
|
- xb build --target=src\xenia-app --target=tests\xenia-cpu-ppc-tests --target=src\xenia-vfs-dump
|
2015-12-31 01:10:19 +00:00
|
|
|
|
2019-07-18 03:38:29 +00:00
|
|
|
after_build:
|
2019-10-20 20:51:32 +00:00
|
|
|
- |-
|
|
|
|
cd build\bin\Windows\Release
|
2019-11-25 10:48:30 +00:00
|
|
|
ren xenia.exe xenia-canary.exe
|
|
|
|
7z a ..\..\..\..\xenia-%appveyor_repo_branch%.zip ..\..\..\..\LICENSE xenia-canary.exe
|
2019-10-20 20:51:32 +00:00
|
|
|
7z a ..\..\..\..\xenia-vfs-dump-%appveyor_repo_branch%.zip ..\..\..\..\LICENSE xenia-vfs-dump.exe
|
|
|
|
cd ..\..\..\..
|
2015-12-31 01:10:19 +00:00
|
|
|
|
|
|
|
artifacts:
|
2015-12-31 19:21:28 +00:00
|
|
|
- path: xenia-cpu-ppc-test.log
|
2017-09-09 15:19:37 +00:00
|
|
|
- path: xenia-$(appveyor_repo_branch).zip
|
2018-11-21 14:38:49 +00:00
|
|
|
- path: xenia-vfs-dump-$(appveyor_repo_branch).zip
|
2015-12-31 01:10:19 +00:00
|
|
|
|
2019-10-20 20:51:32 +00:00
|
|
|
deploy: off
|