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}"
|
TARGET_DIR="/mnt/nfs/results/${BUILD_ID}"
|
||||||
SCRIPT_DIR = "${WORKSPACE}/llvm-premerge-checks/scripts"
|
SCRIPT_DIR = "${WORKSPACE}/llvm-premerge-checks/scripts"
|
||||||
}
|
}
|
||||||
|
options {
|
||||||
|
timeout(time:2, unit:'HOURS')
|
||||||
|
}
|
||||||
stages {
|
stages {
|
||||||
stage("git checkout"){
|
stage("git checkout"){
|
||||||
steps {
|
steps {
|
||||||
|
|
3
Jenkins/master-windows-pipeline/Jenkinsfile
vendored
3
Jenkins/master-windows-pipeline/Jenkinsfile
vendored
|
@ -34,6 +34,9 @@ pipeline {
|
||||||
RESULT_DIR = "${WORKSPACE}\\results"
|
RESULT_DIR = "${WORKSPACE}\\results"
|
||||||
LLVM_DIR = "${WORKSPACE}\\llvm-project"
|
LLVM_DIR = "${WORKSPACE}\\llvm-project"
|
||||||
}
|
}
|
||||||
|
options {
|
||||||
|
timeout(time:2, unit:'HOURS')
|
||||||
|
}
|
||||||
stages {
|
stages {
|
||||||
stage("git checkout"){
|
stage("git checkout"){
|
||||||
steps {
|
steps {
|
||||||
|
|
Loading…
Reference in a new issue