Skip to content

Commit

Permalink
Set Jenkins timeout to 30 minutes
Browse files Browse the repository at this point in the history
Abort the Jenkins build if it takes more than 30 minutes.

Signed-off-by: Michi Mutsuzaki <michi@covalent.io>
  • Loading branch information
Michi Mutsuzaki authored and tgraf committed Mar 23, 2017
1 parent f697b0c commit a4aac42
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ pipeline {
agent {
label 'vagrant'
}
options {
timeout(time: 30, unit: 'MINUTES')
}
stages {
stage('Build') {
environment {
Expand Down

0 comments on commit a4aac42

Please sign in to comment.