Jenkins: increase timeout value (#43916)

This commit is contained in:
Paul Marillonnet 2020-06-15 17:31:13 +02:00
parent e26cdd7f3c
commit 5134fba117
1 changed files with 1 additions and 1 deletions

2
Jenkinsfile vendored
View File

@ -4,7 +4,7 @@ pipeline {
agent any
options {
disableConcurrentBuilds()
timeout(time: 10, unit: 'MINUTES')
timeout(time: 20, unit: 'MINUTES')
}
stages {
stage('Unit Tests') {