Store binaries on the symbol server too

This commit is contained in:
Cameron Gutman 2019-12-03 19:14:19 -08:00
parent 76a4ee22b3
commit 66a123f4b9

View file

@ -159,6 +159,12 @@ if "%SIGN%"=="1" (
if !ERRORLEVEL! NEQ 0 goto Error
)
if "%ML_SYMBOL_STORE%" NEQ "" (
echo Publishing binaries to symbol store: %ML_SYMBOL_STORE%
symstore add /r /f %DEPLOY_FOLDER%\*.* /s %ML_SYMBOL_STORE% /t Moonlight
if !ERRORLEVEL! NEQ 0 goto Error
)
echo Building MSI
msbuild %SOURCE_ROOT%\wix\Moonlight\Moonlight.wixproj /p:Configuration=%BUILD_CONFIG% /p:Platform=%ARCH%
if !ERRORLEVEL! NEQ 0 goto Error