Set the timeout to 12 minutes in the Jenkinsfile

This commit is contained in:
Username404-59 2021-04-09 20:58:29 +02:00
parent 7416bd0ee9
commit 4e67d70dac
Signed by: Username404-59
GPG Key ID: 7AB361FBB257A5D1

2
Jenkinsfile vendored
View File

@ -3,7 +3,7 @@ pipeline {
options { options {
buildDiscarder(logRotator(numToKeepStr: '48', artifactNumToKeepStr: '96')) buildDiscarder(logRotator(numToKeepStr: '48', artifactNumToKeepStr: '96'))
timeout(time: 8, unit: 'MINUTES') timeout(time: 12, unit: 'MINUTES')
} }
triggers { triggers {
pollSCM('*/10 * * * *') pollSCM('*/10 * * * *')