Jenkins: builds can run 150 minutes and do not fail fast

This commit is contained in:
Christian Poessinger 2021-03-27 19:01:38 +01:00
parent 700f566000
commit 45e05954f9

3
Jenkinsfile vendored
View File

@ -97,8 +97,7 @@ node('Docker') {
pipeline {
options {
disableConcurrentBuilds()
timeout(time: 120, unit: 'MINUTES')
parallelsAlwaysFailFast()
timeout(time: 150, unit: 'MINUTES')
timestamps()
buildDiscarder(logRotator(numToKeepStr: '20'))
}