Skip to content

Commit

Permalink
Merge pull request jenkinsci#32 from slide/master
Browse files Browse the repository at this point in the history
Increase timeout
  • Loading branch information
slide committed Nov 1, 2019
2 parents 644d1dd + b39106f commit 5aca818
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions Jenkinsfile
Expand Up @@ -3,10 +3,9 @@
* This is currently handled through Automated Builds using standard Docker Hub feature
*/
pipeline {
agent { label 'linux' }
agent none

options {
timeout(time: 2, unit: 'MINUTES')
buildDiscarder(logRotator(daysToKeepStr: '10'))
timestamps()
}
Expand All @@ -22,8 +21,10 @@ pipeline {
agent {
label "windock"
}
options {
timeout(time: 60, unit: 'MINUTES')
}
steps {
deleteDir()
checkout scm
powershell "& ./make.ps1"
}
Expand All @@ -32,8 +33,10 @@ pipeline {
agent {
label "docker&&linux"
}
options {
timeout(time: 30, unit: 'MINUTES')
}
steps {
deleteDir()
checkout scm
sh "make build"
}
Expand Down

0 comments on commit 5aca818

Please sign in to comment.