-
Notifications
You must be signed in to change notification settings - Fork 11
/
appveyor.yml
50 lines (50 loc) · 1.24 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
version: '{build}'
image: Visual Studio 2017
configuration: Release
platform: Any CPU
init:
- ps: IF ($env:APPVEYOR_REPO_BRANCH -eq "develop") {$env:APPVEYOR_CACHE_SKIP_SAVE = "true"}
install:
- choco install gitversion.portable -version 4.0.0-beta0012 -pre -y
cache:
- packages -> **\packages.config
nuget:
account_feed: true
project_feed: true
before_build:
- ps: >-
.\init.ps1;
& .\.tools\nuget.exe restore -NonInteractive -DisableParallelProcessing;
C:\ProgramData\chocolatey\bin\gfv.exe /l console /output buildserver;
build:
publish_nuget: true
publish_nuget_symbols: true
include_nuget_references: true
parallel: true
verbosity: minimal
test:
assemblies:
except:
- '**\*IntegrationTests.dll'
categories:
except:
- localOnly
- Benchmark
- SOAP
- REST
artifacts:
- path: '*.nupkg'
name: NuGet
- path: Benchmark-report.html
name: BDN
deploy:
- provider: NuGet
server: https://www.myget.org/F/qwiq/api/v2/package
api_key:
secure: 8wGYx8W+ojYQJsAJpRLez+KwwFa+OW7cvsn5RoR08WQpi5klhTq/9b/9YaEu/5Bx
symbol_server: https://www.myget.org/F/qwiq/symbols/api/v2/package
notifications:
- provider: GitHubPullRequest
on_build_success: false
on_build_failure: true
on_build_status_changed: true