File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -76,9 +76,15 @@ on_success:
76
76
}
77
77
If ($Env:SHOULD_PUBLISH_NUGET_ARTIFACT -eq $False)
78
78
{
79
+ Remove-Item -Recurse -Force (Join-Path $env:APPVEYOR_BUILD_FOLDER "LibGit2sharp/bin")
80
+ Remove-Item -Recurse -Force (Join-Path $env:APPVEYOR_BUILD_FOLDER "LibGit2sharp/obj")
81
+ Remove-Item -Recurse -Force (Join-Path $env:APPVEYOR_BUILD_FOLDER "LibGit2sharp.Tests/bin")
82
+ Remove-Item -Recurse -Force (Join-Path $env:APPVEYOR_BUILD_FOLDER "LibGit2sharp.Tests/obj")
83
+
84
+ & nuget install PublishCoverity -Version 0.9.0 -ExcludeVersion -Verbosity detailed -OutputDirectory .\packages
85
+
79
86
Write-Host "Building project with Coverity..."
80
87
& cov-build.exe --dir cov-int --encoding=UTF-8 msbuild $env:APPVEYOR_BUILD_FOLDER\LibGit2Sharp.sln /p:Configuration=Release /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
81
- & nuget install PublishCoverity -Version 0.9.0 -ExcludeVersion
82
88
Write-Host "Compressing Coverity results..."
83
89
ls .\packages
84
90
ls $env:APPVEYOR_BUILD_FOLDER\packages
You can’t perform that action at this time.
0 commit comments