-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
27 lines (22 loc) · 1.06 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
version: 1.0.0-beta3-{build}
os: Windows Server 2012 R2
build_script:
- build_appveyor.cmd
test: off
artifacts:
- path: package-results/release/*.nupkg
name: NuGet Packages
deploy:
- provider: NuGet
api_key:
secure: imSQ7zHHt6QlHCQKYjDIeARKAyDXW8CqLzOW3jaVdHpfi4/htic4C7CHR4az/bC8
on:
branch: release
on_finish:
- ps: >-
# upload results to AppVeyor
$wc = New-Object 'System.Net.WebClient'
$wc.UploadFile("https://ci.appveyor.com/api/testresults/xunit/$($env:APPVEYOR_JOB_ID)", (Resolve-Path .\test-results\ConfigurationMapper.UnitTests.CoreCLR.xml))
$wc.UploadFile("https://ci.appveyor.com/api/testresults/xunit/$($env:APPVEYOR_JOB_ID)", (Resolve-Path .\test-results\ConfigurationMapper.IntegrationTests.CoreCLR.xml))
$wc.UploadFile("https://ci.appveyor.com/api/testresults/xunit/$($env:APPVEYOR_JOB_ID)", (Resolve-Path .\test-results\ConfigurationMapper.UnitTests.CLR.xml))
$wc.UploadFile("https://ci.appveyor.com/api/testresults/xunit/$($env:APPVEYOR_JOB_ID)", (Resolve-Path .\test-results\ConfigurationMapper.IntegrationTests.CLR.xml))