forked from OpenXRay/xray-16
-
Notifications
You must be signed in to change notification settings - Fork 1
/
appveyor.yml
87 lines (73 loc) · 1.8 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
version: '{build}'
pull_requests:
do_not_increment_build_number: true
skip_tags: true
image:
- Previous Visual Studio 2019
configuration:
- Debug
- Mixed
- Release
platform:
- x64
- x86
matrix:
allow_failures:
- platform: x86
configuration: Mixed
- platform: x86
configuration: Release
- platform: x64
configuration: Mixed
- platform: x64
configuration: Release
cache:
- src/packages -> **/packages.config
before_build:
- cmd: >-
nuget restore src\engine.sln
git submodule update --init --recursive
build:
project: src/engine.sln
parallel: true
verbosity: minimal
after_build:
- cmd: xr_pack_build.cmd
test: off
artifacts:
- path: res/OpenXRay.Dx86.7z
name: OpenXRay.Dx86.7z
- path: res/OpenXRay.Dx64.7z
name: OpenXRay.Dx64.7z
- path: res/OpenXRay.Mx86.7z
name: OpenXRay.Mx86.7z
- path: res/OpenXRay.Mx64.7z
name: OpenXRay.Mx64.7z
- path: res/OpenXRay.Rx86.7z
name: OpenXRay.Rx86.7z
- path: res/OpenXRay.Rx64.7z
name: OpenXRay.Rx64.7z
- path: res/Symbols.Dx86.7z
name: Symbols.Dx86.7z
- path: res/Symbols.Dx64.7z
name: Symbols.Dx64.7z
- path: res/Symbols.Mx86.7z
name: Symbols.Mx86.7z
- path: res/Symbols.Mx64.7z
name: Symbols.Mx64.7z
- path: res/Symbols.Rx86.7z
name: Symbols.Rx86.7z
- path: res/Symbols.Rx64.7z
name: Symbols.Rx64.7z
deploy:
- provider: GitHub
tag: $(appveyor_build_version)
release: OpenXRay (build $(appveyor_build_version))
description: $(APPVEYOR_REPO_COMMIT_MESSAGE)
auth_token:
secure: kGVniXDR926BfVcA97y25BzALbijvgboBsozZzY9yc8RPz15Q4YG474h7vl14/J1
artifact:
OpenXRay.Dx86.7z, OpenXRay.Dx64.7z, OpenXRay.Mx86.7z, OpenXRay.Mx64.7z, OpenXRay.Rx86.7z, OpenXRay.Rx64.7z,
Symbols.Dx86.7z, Symbols.Dx64.7z, Symbols.Mx86.7z, Symbols.Mx64.7z, Symbols.Rx86.7z, Symbols.Rx64.7z
draft: true
force_update: true