xenia-canary/.appveyor.yml

49 lines
850 B
YAML

version: 1.0.{build}-{branch}
branches:
except:
- gh-pages
- master
skip_tags: true
skip_commits:
files:
- docs/*/*
- .github/*
- .github/*/*
- .travis.yml
- src/**/*_posix.*
- src/**/*_linux.*
- src/**/*_x11.*
- src/**/*_gtk.*
- 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
install:
- xb setup
build_script:
- xb build --target=src\xenia-app --target=src\xenia-vfs-dump
after_build:
- |-
7z a -mx1 xenia-%appveyor_repo_branch%.zip LICENSE .\build\bin\Windows\Release\xenia-canary.exe
7z a -mx1 xenia-vfs-dump-%appveyor_repo_branch%.zip LICENSE .\build\bin\Windows\Release\xenia-vfs-dump.exe
test: off
artifacts:
- path: '*.zip'
deploy: off