jenkins: allow job to take up to 15 minutes (#54619)

This commit is contained in:
Frédéric Péters 2021-06-07 14:16:42 +02:00
parent bb4eb058c4
commit 17d8367fe5
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: 15, unit: 'MINUTES')
}
stages {
stage('Unit Tests') {