SEBWIN-344: Alas! Switched to copy command for x64 setup copying on release build server.

This commit is contained in:
dbuechel 2019-11-07 14:42:23 +01:00
parent 47f9ad580e
commit 2207f711bb

View file

@ -27,7 +27,7 @@ for:
before_build: before_build:
- nuget restore - nuget restore
after_build: after_build:
- xcopy "Setup\bin\%PLATFORM%\%CONFIGURATION%\Setup.msi" "%TEMP%\Setup.msi" /y - copy /y "Setup\bin\%PLATFORM%\%CONFIGURATION%\Setup.msi" "%TEMP%\Setup.msi"
- 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 "Setup\bin\%PLATFORM%\%CONFIGURATION%\Setup.msi" -FileName "SEB_%APPVEYOR_BUILD_VERSION%_%PLATFORM%_Setup.msi" -DeploymentName "SEB %APPVEYOR_BUILD_VERSION% Setup (%PLATFORM%)"
- -
@ -37,7 +37,7 @@ for:
before_build: before_build:
- nuget restore - nuget restore
- md "Setup\bin\x64\%CONFIGURATION%" - md "Setup\bin\x64\%CONFIGURATION%"
- xcopy "%TEMP%\Setup.msi" "Setup\bin\x64\%CONFIGURATION%\Setup.msi" - copy "%TEMP%\Setup.msi" "Setup\bin\x64\%CONFIGURATION%\Setup.msi"
after_build: 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 "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" - appveyor PushArtifact "SetupBundle\bin\%PLATFORM%\%CONFIGURATION%\SetupBundle.exe" -FileName "SEB_%APPVEYOR_BUILD_VERSION%_SetupBundle.exe" -DeploymentName "SEB %APPVEYOR_BUILD_VERSION% Setup Bundle"