From b26c77e57894fd2f2aaf35970abbc2ea0c3f9e97 Mon Sep 17 00:00:00 2001 From: dbuechel Date: Fri, 26 Jul 2019 13:54:25 +0200 Subject: [PATCH] SEBWIN-300: Attempt to fix variables in CI after build script. --- appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index fa930bf9..87cf3ab4 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -13,7 +13,7 @@ before_build: build_script: - msbuild /verbosity:minimal "SafeExamBrowser.sln" after_build: - - appveyor PushArtifact "Setup\bin\{configuration}\Setup.msi" -FileName "SEB_$(appveyor_build_version)_Setup.msi" -DeploymentName "SEB_$(appveyor_build_version)_Setup" + - appveyor PushArtifact "Setup\bin\%CONFIGURATION%\Setup.msi" -FileName "SEB_%APPVEYOR_BUILD_VERSION%_Setup.msi" -DeploymentName "SEB_%APPVEYOR_BUILD_VERSION%_Setup" test_script: - .\packages\OpenCover.4.7.922\tools\OpenCover.Console.exe -register:user -target:"vstest.console.exe" -targetargs:"/logger:Appveyor .\SafeExamBrowser.Client.UnitTests\bin\%PLATFORM%\%CONFIGURATION%\SafeExamBrowser.Client.UnitTests.dll" -filter:"+[*]* -[*.UnitTests]* -[*Moq*]*" -mergebyhash -output:"coverage.xml" - .\packages\OpenCover.4.7.922\tools\OpenCover.Console.exe -register:user -target:"vstest.console.exe" -targetargs:"/logger:Appveyor .\SafeExamBrowser.Communication.UnitTests\bin\%PLATFORM%\%CONFIGURATION%\SafeExamBrowser.Communication.UnitTests.dll" -filter:"+[*]* -[*.UnitTests]* -[*Moq*]*" -mergebyhash -mergeoutput -output:"coverage.xml"