From 17d8367fe5bd74dd041508c8bad6700cad662f91 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Mon, 7 Jun 2021 14:16:42 +0200 Subject: [PATCH] jenkins: allow job to take up to 15 minutes (#54619) --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index d2e14106..d26b52b2 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -4,7 +4,7 @@ pipeline { agent any options { disableConcurrentBuilds() - timeout(time: 10, unit: 'MINUTES') + timeout(time: 15, unit: 'MINUTES') } stages { stage('Unit Tests') {