forked from xenia-canary/xenia-canary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.appveyor.yml
56 lines (42 loc) · 1.06 KB
/
.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
44
45
46
47
48
49
50
51
52
53
54
55
56
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
os: Visual Studio 2019
init:
- git config --global core.autocrlf input
install:
- xb setup
build_script:
- xb build --target=src\xenia-app --target=tests\xenia-cpu-ppc-tests --target=src\xenia-vfs-dump
after_build:
- |-
cd build\bin\Windows\Release
ren xenia.exe xenia-canary.exe
7z a ..\..\..\..\xenia-%appveyor_repo_branch%.zip ..\..\..\..\LICENSE xenia-canary.exe
7z a ..\..\..\..\xenia-vfs-dump-%appveyor_repo_branch%.zip ..\..\..\..\LICENSE xenia-vfs-dump.exe
cd ..\..\..\..
before_test:
- xb gentests
test_script:
- xb test --no_build
artifacts:
- path: xenia-cpu-ppc-test.log
- path: xenia-$(appveyor_repo_branch).zip
- path: xenia-vfs-dump-$(appveyor_repo_branch).zip
deploy: off