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:
sholdee 2022-06-16 19:55:26 -05:00 committed by GitHub
parent 72ebeaad3b
commit 73ebcf2b1b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

6
Jenkinsfile vendored
View File

@ -8,6 +8,9 @@ pipeline {
stages {
stage ('Build Windows') {
options {
timeout(time: 20)
}
environment {
MSBUILD='C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\Msbuild\\Current\\Bin\\msbuild.exe'
CONFIG='Release'
@ -71,6 +74,9 @@ pipeline {
}
}
stage ('Build Linux') {
options {
timeout(time: 20)
}
agent {
label "SoH-Linux-Builders"
}