We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7c44cea + ed9de3d commit 735daa4Copy full SHA for 735daa4
appveyor.yml
@@ -6,7 +6,13 @@ configuration:
6
- Debug
7
- Release
8
build_script:
9
- - ps: echo "Building for $env:CONFIGURATION"
+ - ps: echo "Building for $env:CONFIGURATION on $env:APPVEYOR_BUILD_WORKER_IMAGE"
10
- ps: dotnet msbuild build.proj /p:Configuration=$env:CONFIGURATION
11
test_script:
12
- - ps: if ($LastExitCode -ne 0) { $host.SetShouldExit($LastExitCode) }
+ - ps: if ($LastExitCode -ne 0) { $host.SetShouldExit($LastExitCode) }
13
+ - ps: |
14
+ if ($env:APPVEYOR_BUILD_WORKER_IMAGE -eq "Ubuntu" -and $env:CONFIGURATION -eq "Release") {
15
+ curl -s https://codecov.io/bash > codecov
16
+ chmod +x codecov
17
+ ./codecov -f ./test/coverlet.core.tests/coverage.opencover.xml
18
+ }
0 commit comments