forked from OpenXRay/xray-16
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
67 lines (53 loc) · 1.15 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
version: '{build}'
pull_requests:
do_not_increment_build_number: true
skip_tags: true
skip_branch_with_pr: true
image:
- Visual Studio 2022
configuration:
- Debug
- Mixed
- Release
- Release Master Gold
platform:
- x64
- x86
branches:
except:
- dependabot/*
cache:
- src/packages -> **/packages.config
for:
-
matrix:
only:
- image: Visual Studio 2022
before_build:
- git submodule update --init --recursive
- nuget restore src\engine.sln
build:
project: src/engine.sln
parallel: true
verbosity: minimal
after_build:
- cmd: misc/windows/xr_pack_build.cmd "%CONFIGURATION%" "%PLATFORM%"
artifacts:
- path: res/OpenXRay.*.7z
name: OpenXRay.*.7z
- path: res/Symbols.*.7z
name: Symbols.*.7z
- path: res/Utils.*.7z
name: Utils.*.7z
test: off
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.*.7z, Symbols.*.7z, Utils.*.7z
draft: true
force_update: true