48 lines
833 B
YAML
48 lines
833 B
YAML
version: 1.0.{build}-{branch}
|
|
|
|
branches:
|
|
except:
|
|
- gh-pages
|
|
- master
|
|
|
|
skip_tags: true
|
|
|
|
skip_commits:
|
|
files:
|
|
- docs/*
|
|
- docs/*/*
|
|
- .github/*
|
|
- .github/*/*
|
|
- LICENSE
|
|
- README.md
|
|
- .azure-pipelines.yml
|
|
- .travis.yml
|
|
|
|
skip_branch_with_pr: true
|
|
|
|
pull_requests:
|
|
do_not_increment_build_number: true
|
|
|
|
image: Visual Studio 2019
|
|
|
|
init:
|
|
- wmic cpu get caption, deviceid, name, numberofcores, maxclockspeed, status
|
|
|
|
install:
|
|
- xb setup
|
|
|
|
build_script:
|
|
- xb build --target=src\xenia-app --target=src\xenia-vfs-dump
|
|
|
|
after_build:
|
|
- |-
|
|
7z a xenia-%appveyor_repo_branch%.zip LICENSE .\build\bin\Windows\Release\xenia-canary.exe
|
|
7z a xenia-vfs-dump-%appveyor_repo_branch%.zip LICENSE .\build\bin\Windows\Release\xenia-vfs-dump.exe
|
|
|
|
test: off
|
|
|
|
artifacts:
|
|
- path: '*.zip'
|
|
|
|
deploy: off
|