forked from AdamsLair/duality
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
51 lines (41 loc) · 1.49 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
version: AppVeyor {branch} Build {build}
image: Visual Studio 2017
branches:
except:
- gh-pages
# fetch repository as zip archive
shallow_clone: true
# 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.
# The reason why it's inactive is that releases are in fact a relatively rare thing,
# while AppVeyor runs on each commit. It's probably for the best to not accumulate 6 - 11 MB
# of disk space in the AppVeyor VM on each commit, never to go away because of build history.
#
# 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: 'Build\NightlyBuild\Package\Duality.zip'
# name: "Binary Release"
# - path: 'Build\NightlyBuild\NuGetPackages'
# name: "All NuGet Packages"
# - path: 'Build\NightlyBuild\NuGetPackages\*.nupkg'
# name: "NuGet Packages"