forked from AdamsLair/duality
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
49 lines (39 loc) · 1.18 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
version: AppVeyor {branch} Build {build}
image: Visual Studio 2019
branches:
except:
- gh-pages
# Do not build on tags (GitHub only)
skip_tags: true
platform: Any CPU
configuration: Release
before_build:
- nuget restore Duality.sln
build:
project: Duality.sln
verbosity: minimal
test:
assemblies:
- 'Build\Output\*Tests.dll'
categories:
except:
- Rendering # AppVeyor VMs don't have GPU access.
#
# The following lines trigger a complete NuGet Package and Binary Release build.
# They do not attempt to deploy them - it's just a build, made available through artifacts.
#
# In order to do a manual build on your local machine, use the "Package Binary NoDocs.bat" script,
# or, if you have SandCastle HelpFile Builder installed, use the "Package Binary.bat" script.
# You will find the build results in the below artifact paths.
#
after_test: '"Build\Scripts\Package Binary CI Script.bat"'
artifacts:
- path: 'Source\DualityTemplates\bin\Duality.zip'
name: "Binary Release"
- path: 'Build\NightlyBuild\NuGetPackages\*.nupkg'
name: "NuGet Packages"
deploy:
- provider: Environment
name: NuGetPackageRelease
on:
branch: release