added timeouts to master builds
This commit is contained in:
parent
184d216b24
commit
55f26c0f75
2 changed files with 6 additions and 0 deletions
3
Jenkins/master-linux-pipeline/Jenkinsfile
vendored
3
Jenkins/master-linux-pipeline/Jenkinsfile
vendored
|
@ -22,6 +22,9 @@ pipeline {
|
|||
TARGET_DIR="/mnt/nfs/results/${BUILD_ID}"
|
||||
SCRIPT_DIR = "${WORKSPACE}/llvm-premerge-checks/scripts"
|
||||
}
|
||||
options {
|
||||
timeout(time:2, unit:'HOURS')
|
||||
}
|
||||
stages {
|
||||
stage("git checkout"){
|
||||
steps {
|
||||
|
|
3
Jenkins/master-windows-pipeline/Jenkinsfile
vendored
3
Jenkins/master-windows-pipeline/Jenkinsfile
vendored
|
@ -34,6 +34,9 @@ pipeline {
|
|||
RESULT_DIR = "${WORKSPACE}\\results"
|
||||
LLVM_DIR = "${WORKSPACE}\\llvm-project"
|
||||
}
|
||||
options {
|
||||
timeout(time:2, unit:'HOURS')
|
||||
}
|
||||
stages {
|
||||
stage("git checkout"){
|
||||
steps {
|
||||
|
|
Loading…
Reference in a new issue