SEBWIN-344: Fixed robocopy return code for setup copy operation in release build server.

This commit is contained in:
dbuechel 2019-11-07 12:04:37 +01:00
parent 93ed53ec74
commit 79ba64b0a6

View file

@ -28,6 +28,8 @@ for:
- nuget restore
after_build:
- robocopy "Setup\bin\%PLATFORM%\%CONFIGURATION%" "%TEMP%" Setup.msi
if %ERRORLEVEL% geq 8 exit 1
exit 0
- appveyor PushArtifact "Setup\bin\%PLATFORM%\%CONFIGURATION%\Setup.msi" -FileName "SEB_%APPVEYOR_BUILD_VERSION%_%PLATFORM%_Setup.msi" -DeploymentName "SEB %APPVEYOR_BUILD_VERSION% Setup (%PLATFORM%)"
-
@ -37,6 +39,8 @@ for:
before_build:
- nuget restore
- robocopy "%TEMP%" "Setup\bin\x64\%CONFIGURATION%" Setup.msi /mov
if %ERRORLEVEL% geq 8 exit 1
exit 0
after_build:
- appveyor PushArtifact "Setup\bin\%PLATFORM%\%CONFIGURATION%\Setup.msi" -FileName "SEB_%APPVEYOR_BUILD_VERSION%_%PLATFORM%_Setup.msi" -DeploymentName "SEB %APPVEYOR_BUILD_VERSION% Setup (%PLATFORM%)"
- appveyor PushArtifact "SetupBundle\bin\%PLATFORM%\%CONFIGURATION%\SetupBundle.exe" -FileName "SEB_%APPVEYOR_BUILD_VERSION%_SetupBundle.exe" -DeploymentName "SEB %APPVEYOR_BUILD_VERSION% Setup Bundle"