mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2025-07-16 10:02:59 -07:00
Add failsafe in case of hang (#465)
Aborts stage if hung, which extract_assets.py seems to do on rare occasion
This commit is contained in:
parent
72ebeaad3b
commit
73ebcf2b1b
1 changed files with 6 additions and 0 deletions
6
Jenkinsfile
vendored
6
Jenkinsfile
vendored
|
@ -8,6 +8,9 @@ pipeline {
|
||||||
|
|
||||||
stages {
|
stages {
|
||||||
stage ('Build Windows') {
|
stage ('Build Windows') {
|
||||||
|
options {
|
||||||
|
timeout(time: 20)
|
||||||
|
}
|
||||||
environment {
|
environment {
|
||||||
MSBUILD='C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\Msbuild\\Current\\Bin\\msbuild.exe'
|
MSBUILD='C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\Msbuild\\Current\\Bin\\msbuild.exe'
|
||||||
CONFIG='Release'
|
CONFIG='Release'
|
||||||
|
@ -71,6 +74,9 @@ pipeline {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage ('Build Linux') {
|
stage ('Build Linux') {
|
||||||
|
options {
|
||||||
|
timeout(time: 20)
|
||||||
|
}
|
||||||
agent {
|
agent {
|
||||||
label "SoH-Linux-Builders"
|
label "SoH-Linux-Builders"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue