-
Notifications
You must be signed in to change notification settings - Fork 13
/
appveyor.yml
59 lines (43 loc) · 1.01 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
# https://www.appveyor.com/docs/appveyor-yml/
version: "{build}"
os: Visual Studio 2015
configuration: Release
platform:
- x86
- x64
branches:
only:
- master
matrix:
allow_failures:
- platform: x86
configuration: Debug
- platform: x64
configuration: Debug
exclude:
- platform: x86
configuration: Debug
- platform: x64
configuration: Debug
assembly_info:
patch: false
cache:
- packages -> **\packages.config
skip_tags: true
test: off
init:
- git config --global core.autocrlf input
before_build:
- cmd: nuget restore
build:
parallel: true
verbosity: detailed
environment:
ghapikey:
secure: "qxDTsrjBZ3bZCaTvxQMVE52PK03x3CeopvZYLRvceugKwnmpk49o8Shir9Gy1z+W"
after_build:
- ps: Copy-Item "WinLLDPService\build\paths.ps1.example" "WinLLDPService\build\paths.ps1"
- ps: WinLLDPService\build\build.ps1 "$Env:PLATFORM"
- ps: WinLLDPService\build\github_release.ps1 "WinLLDPService-$Env:PLATFORM.msi"
#artifacts:
# - path: '**\WinLLDPService-*.msi'