Aggiunti tempi sleep diversi x build parallele

This commit is contained in:
Samuele E. Locatelli (WEB DEV)
2017-04-05 00:33:20 +02:00
parent b49c804ff5
commit 67e609c62f
Vendored
+4
View File
@@ -29,18 +29,22 @@ pipeline {
bat "\"${tool 'MSBuild-14.0'}\" HOME\\HOME.csproj -target:Build /p:Configuration=Release /p:Platform=\"Any CPU\" /p:ProductVersion=${env.versionNumber} /p:OutputPath=bin/ /m"
},
ADMIN: {
sleep 1
echo 'Build ADMIN Release'
bat "\"${tool 'MSBuild-14.0'}\" GPW_Admin\\GPW_Admin.csproj -target:Build /p:Configuration=Release /p:Platform=\"Any CPU\" /p:ProductVersion=${env.versionNumber} /p:OutputPath=bin/ /m"
},
BARCODE: {
sleep 2
echo 'Build BARCODE Release'
bat "\"${tool 'MSBuild-14.0'}\" GPW_Barcode\\GPW_Barcode.csproj -target:Build /p:Configuration=Release /p:Platform=\"Any CPU\" /p:ProductVersion=${env.versionNumber} /p:OutputPath=bin/ /m"
},
SMART: {
sleep 3
echo 'Build SMART Release'
bat "\"${tool 'MSBuild-14.0'}\" GPW_Smart\\GPW_Smart.csproj -target:Build /p:Configuration=Release /p:Platform=\"Any CPU\" /p:ProductVersion=${env.versionNumber} /p:OutputPath=bin/ /m"
},
COMMESSE: {
sleep 4
echo 'Build COMMESSE Release'
bat "\"${tool 'MSBuild-14.0'}\" GPW_Commesse\\GPW_Commesse.csproj -target:Build /p:Configuration=Release /p:Platform=\"Any CPU\" /p:ProductVersion=${env.versionNumber} /p:OutputPath=bin/ /m"
},