616b2f521a
* Build Windows Installer stage * Run the Windows Installer build on thw windows node * Disable Build Images, Push Images and Upload steps * checkout scm on windows agent * Execute MSBuild * Use bat instead of sh * Test stash * Copy artifacts between nodes * Fix typo * Sign Windows Installer * Fix Makefile * Enable binaries-upload * Set Product Version to 0.0.0 * Build installer with Release configuration * Enable back docker image stages and slack alerts * Restore SNOboard shortcut after resolving conflicts * Remove empty line from build.bat
13 lines
564 B
Batchfile
13 lines
564 B
Batchfile
rem set the TAG env var from the release dir
|
|
for /f %%i in ('dir /B release') do set TAG=%%i
|
|
|
|
rem copy the storagenode binaries to the installer project
|
|
copy release\%TAG%\storagenode_windows_amd64.exe installer\windows\storagenode.exe
|
|
copy release\%TAG%\storagenode-updater_windows_amd64.exe installer\windows\storagenode-updater.exe
|
|
|
|
rem build the installer
|
|
msbuild installer\windows\windows.sln /t:Build /p:Configuration=Release
|
|
|
|
rem copy the MSI to the release dir
|
|
copy installer\windows\bin\Release\storagenode.msi release\%TAG%\storagenode_windows_amd64.msi
|