@@ -59,7 +59,7 @@ before_build:
59
59
- nuget restore "%APPVEYOR_BUILD_FOLDER%\LibGit2Sharp.sln"
60
60
61
61
build_script :
62
- - msbuild "%APPVEYOR_BUILD_FOLDER%\LibGit2Sharp.sln" /verbosity:normal /p:Configuration=Release /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" /property:ExtraDefine="LEAKS_IDENTIFYING"
62
+ - cov-build.exe --dir cov-int msbuild "%APPVEYOR_BUILD_FOLDER%\LibGit2Sharp.sln" /verbosity:normal /p:Configuration=Release /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" /property:ExtraDefine="LEAKS_IDENTIFYING"
63
63
64
64
test_script :
65
65
- REM '%xunit_runner% "%APPVEYOR_BUILD_FOLDER%\LibGit2Sharp.Tests\bin\Release\LibGit2Sharp.Tests.dll" /appveyor'
@@ -83,26 +83,30 @@ on_success:
83
83
84
84
& nuget install PublishCoverity -Version 0.9.0 -ExcludeVersion -OutputDirectory .\packages
85
85
86
- Write-Host -ForegroundColor "Green" "Building project with Coverity..."
87
- & cov-build.exe --dir cov-int "C:\Program Files (x86)\MSBuild\12.0\bin\msbuild.exe" $env:APPVEYOR_BUILD_FOLDER\LibGit2Sharp.sln /p:Configuration=Release /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
86
+ # Write-Host -ForegroundColor "Green" "Building project with Coverity..."
87
+ # & cov-build.exe --dir cov-int "C:\Program Files (x86)\MSBuild\12.0\bin\msbuild.exe" $env:APPVEYOR_BUILD_FOLDER\LibGit2Sharp.sln /p:Configuration=Release /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
88
88
Write-Host -ForegroundColor "Green" "Compressing Coverity results..."
89
89
90
90
& .\packages\PublishCoverity\PublishCoverity.exe compress `
91
91
-i "$env:APPVEYOR_BUILD_FOLDER\cov-int" `
92
92
-o "$env:APPVEYOR_BUILD_FOLDER\$env:APPVEYOR_PROJECT_NAME.zip" `
93
93
--overwrite
94
- Write-Host -ForegroundColor "Green" "Uploading Coverity results... $env:coverity_email"
95
- & .\packages\PublishCoverity\PublishCoverity.exe publish `
96
- -t "$env:coverity_token" `
97
- -e "$env:coverity_email" `
98
- -r "$env:APPVEYOR_REPO_NAME" `
99
- -z "$env:APPVEYOR_BUILD_FOLDER\$env:APPVEYOR_PROJECT_NAME.zip" `
100
- -d "CI server scheduled build." `
101
- --codeVersion "$Env:ASSEMBLY_INFORMATIONAL_VERSION"
94
+ # Write-Host -ForegroundColor "Green" "Uploading Coverity results... $env:coverity_email"
95
+ # & .\packages\PublishCoverity\PublishCoverity.exe publish `
96
+ # -t "$env:coverity_token" `
97
+ # -e "$env:coverity_email" `
98
+ # -r "$env:APPVEYOR_REPO_NAME" `
99
+ # -z "$env:APPVEYOR_BUILD_FOLDER\$env:APPVEYOR_PROJECT_NAME.zip" `
100
+ # -d "CI server scheduled build." `
101
+ # --codeVersion "$Env:ASSEMBLY_INFORMATIONAL_VERSION"
102
102
}
103
103
104
104
artifacts :
105
105
- path : cov-int\build-log.txt
106
+ name : coverity.build.logger
107
+
108
+ - path : cov-int\LibGit2Sharp.zip
109
+ name : coverity.analysis
106
110
107
111
notifications :
108
112
- provider : Email
0 commit comments