xenia-canary/.appveyor.yml

44 lines
992 B
YAML
Raw Normal View History

version: 1.0.{build}-{branch}
branches:
2022-02-03 11:47:00 +00:00
except: [gh-pages, master, canary_base]
skip_tags: true
skip_commits:
files:
2022-02-03 11:47:00 +00:00
- '*.md'
- '.azure-pipelines.yml'
- '.drone.star'
- '.github/**'
- 'android/**'
- 'docs/**'
- 'src/**/*_posix.*'
- 'src/**/*_linux.*'
- 'src/**/*_gnulinux.*'
- 'src/**/*_x11.*'
- 'src/**/*_gtk.*'
- 'src/**/*_android.*'
- 'src/**/*_mac.*'
- 'LICENSE'
skip_branch_with_pr: true
pull_requests:
do_not_increment_build_number: true
2021-01-31 10:10:55 +00:00
image: Visual Studio 2019
install:
2021-01-31 10:10:55 +00:00
- xb setup
build_script:
2021-01-31 10:10:55 +00:00
- xb build --config=Release --target=src\xenia-app --target=src\xenia-vfs-dump
2019-07-18 03:38:29 +00:00
after_build:
- |
2021-01-31 10:10:55 +00:00
7z a xenia_canary.zip ".\build\bin\Windows\Release\xenia_canary.exe" ".\build\bin\Windows\Release\xenia_canary.pdb" LICENSE
7z a xenia-vfs-dump_canary.zip ".\build\bin\Windows\Release\xenia-vfs-dump.exe" ".\build\bin\Windows\Release\xenia-vfs-dump.pdb" LICENSE
artifacts:
- path: '*.zip'