Timeout the Jenkins build pipeline after 10 minutes.

This commit is contained in:
John Blum
2018-08-20 15:48:33 -07:00
parent 26c7b583bf
commit 494442aa7b

6
Jenkinsfile vendored
View File

@@ -9,6 +9,12 @@ def SUCCESS = hudson.model.Result.SUCCESS.toString()
currentBuild.result = SUCCESS
pipeline {
options {
timeout(time: 10, unit: 'MINUTES')
}
}
try {
parallel check: {
stage('Check') {