Add Build Timeout to Jenkinsfile (#1883)

This commit is contained in:
Stefan Benten 2019-05-02 17:48:04 +02:00 committed by Bill Thorp
parent ba78ad8c0b
commit becc7617a6

View File

@ -5,6 +5,9 @@ pipeline {
args '-u root:root -v "/tmp/gomod":/go/pkg/mod' args '-u root:root -v "/tmp/gomod":/go/pkg/mod'
} }
} }
options {
timeout(time: 30, unit: 'MINUTES')
}
stages { stages {
stage('Build') { stage('Build') {
steps { steps {