Projet

Général

Profil

0002-Jenkins-increase-timeout-value-43916.patch

Paul Marillonnet, 15 juin 2020 17:33

Télécharger (648 octets)

Voir les différences:

Subject: [PATCH 2/3] Jenkins: increase timeout value (#43916)

 Jenkinsfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
Jenkinsfile
4 4
    agent any
5 5
    options {
6 6
        disableConcurrentBuilds()
7
        timeout(time: 10, unit: 'MINUTES')
7
        timeout(time: 20, unit: 'MINUTES')
8 8
    }
9 9
    stages {
10 10
        stage('Unit Tests') {
11
-