forked from net-commons/common-logging
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
19 lines (15 loc) · 807 Bytes
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
version: 1.0.{build}
configuration: Debug
build_script:
- call build-ci.cmd
test: off
artifacts:
- path: .\files.txt
name: test results list
on_finish:
- ps: >-
# upload test results to AppVeyor
$wc = New-Object 'System.Net.WebClient'
Get-ChildItem -Path (Join-Path $($env:APPVEYOR_BUILD_FOLDER) \build) -Recurse -File -Filter "*-TestResults.xml" | % { $wc.UploadFile("https://ci.appveyor.com/api/testresults/nunit/$($env:APPVEYOR_JOB_ID)", $_.FullName) }
#Get-ChildItem -Path (Join-Path $($env:APPVEYOR_BUILD_FOLDER) \build\Debug) -Recurse -File -Filter "*-TestResults.xml" | % { Write-Host $_.FullName }
# $wc.UploadFile("https://ci.appveyor.com/api/testresults/nunit/$($env:APPVEYOR_JOB_ID)", (Resolve-Path (Join-Path $($env:APPVEYOR_BUILD_FOLDER) \build\Debug\TestResult.xml)))