forked from angularsen/UnitsNet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
85 lines (68 loc) · 2.77 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
version: '{build}'
image: Visual Studio 2019
# Don't build PR commits twice
skip_branch_with_pr: true
# Don't build tags, avoid duplicate builds on master when bumping version
skip_tags: true
# Don't build changes to docs
skip_commits:
files:
- docs/*
- '**/*.md'
# Only fetch the latest commits to reduce time to download on agent, but support pushes containing multiple commits
clone_depth: 20
# build cache to preserve files/folders between builds
cache:
- packages -> **\packages.config # preserve "packages" directory in the root of build folder but will reset it if packages.config is modified
- '%LocalAppData%\NuGet\Cache' # NuGet < v3
- '%LocalAppData%\NuGet\v3-cache' # NuGet v3
# Set environment variables here
# environment:
# Uncomment me to enable Remote Desktop for the duration of the build (when debugging hanging builds).
# Password is configured as envvar APPVEYOR_RDP_PASSWORD in AppVeyor UI.
# Scripts that run before cloning repository.
# init:
# - ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
# Uncomment me to enable Remote Desktop AFTER build. Build is blocked until a special "lock" file on VM desktop is deleted (max 60 mins).
# Password is configured as envvar APPVEYOR_RDP_PASSWORD in AppVeyor UI.
# on_finish:
# - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
# Scripts that run after cloning repository.
# install:
build_script:
- ps: |
# Build, test, pack and push nugets
.\\build-with-wrc.bat
$BuildExitCode = $LASTEXITCODE
# Upload test results to AppVeyor
$wc = New-Object 'System.Net.WebClient'
if (Test-Path .\\Artifacts\\Logs\\) {
Get-ChildItem .\\Artifacts\\Logs\\*Test*.xml | %{
$wc.UploadFile("https://ci.appveyor.com/api/testresults/nunit/$($env:APPVEYOR_JOB_ID)", $_.FullName)
}
}
if ($BuildExitCode -ne 0) {
Write-Host "Build failed with exit code $BuildExitCode."
exit $BuildExitCode
}
# Upload code coverage reports to codecov.io.
# PowerShell does not support TLS1.2 by default ¯\_(ツ)_/¯, so need to configure that.
after_test:
- ps: |
$env:PATH = 'C:\msys64\usr\bin;' + $env:PATH
bash Build/codecov.sh -s "Artifacts/Coverage" -t $env:codecov_upload_token
artifacts:
- path: Artifacts\UnitsNet.zip
- path: 'Artifacts\NuGet\*.nupkg' # find all NuGet packages recursively
- path: Artifacts\Coverage
deploy:
- provider: NuGet
api_key:
secure: Bc59XzyBNSWbOvxFp8Fyv2v5TVs5NY/rFnz/BA1lA7A35qrS3Ngrc8YFe/zuSXfF
on:
branch: master
- provider: NuGet
api_key:
secure: Bc59XzyBNSWbOvxFp8Fyv2v5TVs5NY/rFnz/BA1lA7A35qrS3Ngrc8YFe/zuSXfF
on:
branch: release/*