forked from Unity-Technologies/com.unity.netcode.gameobjects
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
84 lines (74 loc) · 1.52 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
version: '{branch}-{build}'
configuration:
- Debug
- Debug_Lite
- Release_Lite
- Release
skip_commits:
files:
- docs/*
skip_tags: true
build:
project: MLAPI.sln
verbosity: minimal
after_build:
- cd C:\projects\mlapi
- powershell "& "".\BuildUnityPackages.ps1"""
artifacts:
- path: '*.unitypackage'
image: Visual Studio 2017
before_build:
- nuget restore
matrix:
fast_finish: true
for:
-
matrix:
only:
- configuration: Debug
artifacts:
- path: 'MLAPI\bin\Debug\*\*MLAPI*'
before_package:
- cp MLAPI/bin/Debug/net35/MLAPI.* MLAPI/bin
test:
assemblies:
- 'MLAPI-Tests\bin\Debug\*\MLAPI-Tests.dll'
-
matrix:
only:
- configuration: Debug_Lite
artifacts:
- path: 'MLAPI\bin\Lite\Debug\*\*MLAPI*'
before_package:
- cp MLAPI/bin/Lite/Debug/net35/MLAPI.* MLAPI/bin
test:
assemblies:
- 'MLAPI-Tests\bin\Lite\Debug\*\MLAPI-Tests.dll'
-
matrix:
only:
- configuration: Release
artifacts:
- path: 'MLAPI\bin\Release\*\*MLAPI*'
before_package:
- cp MLAPI/bin/Release/net35/MLAPI.* MLAPI/bin
test:
assemblies:
- 'MLAPI-Tests\bin\Release\*\MLAPI-Tests.dll'
cache:
- '%APPDATA%\npm'
install:
- npm install -g semantic-release
deploy_script:
- semantic-release
-
matrix:
only:
- configuration: Release_Lite
artifacts:
- path: 'MLAPI\bin\Lite\Release\*\*MLAPI*'
before_package:
- cp MLAPI/bin/Lite/Release/net35/MLAPI.* MLAPI/bin
test:
assemblies:
- 'MLAPI-Tests\bin\Lite\Release\*\MLAPI-Tests.dll'