forked from xenia-canary/xenia-canary
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.appveyor.yml
43 lines (34 loc) · 992 Bytes
/
.appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
version: 1.0.{build}-{branch}
branches:
except: [gh-pages, master, canary_base]
skip_tags: true
skip_commits:
files:
- '*.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
image: Visual Studio 2019
install:
- xb setup
build_script:
- xb build --config=Release --target=src\xenia-app --target=src\xenia-vfs-dump
after_build:
- |
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'