forked from pact-foundation/pact-net
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
43 lines (34 loc) · 1.05 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
version: "{build}"
image:
- Ubuntu1804
- Visual Studio 2017
install:
- git submodule update --init --recursive
- ps: .\Build\Setup-Build-Environment.ps1
- ps: .\Build\Download-Standalone-Core.ps1
assembly_info:
patch: true
file: AssemblyInfo.*
assembly_version: "$(pactnet_assembly_version)"
assembly_file_version: "$(pactnet_assembly_version)"
assembly_informational_version: "$(pactnet_version)"
deploy:
- provider: NuGet
skip_symbols: true
api_key:
secure: Vlw7m7mXEZ9XqlZBsQ4fzqDKjO8yTdtXhO9c04RnrD4zwhf6dx+lxBmC9TJ7EF6G
on:
appveyor_repo_tag: true
artifacts:
- path: '**\Build\PactNet*.nupkg'
- path: '**\Build\coverage\*'
configuration: Release
build:
project: PactNet.sln
verbosity: minimal
before_build:
- nuget restore
after_test:
- ps: .\Build\Tests-Coverage.ps1 -GenerateSummaryReport
- ps: .\Build\Publish-Release.ps1 -ReleaseVersionNumber "$env:PACTNET_VERSION"
- ps: .\Build\Publish-StandaloneCore-Releases.ps1 -ReleaseVersionNumber "$env:PACTNET_VERSION"