From 227fab2e4225b57ada25a1f0e2788b06cc233ce7 Mon Sep 17 00:00:00 2001 From: Vedran Pavic Date: Wed, 19 Sep 2018 00:45:20 +0200 Subject: [PATCH] Adjust CI build timeouts --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 2e57a8de..8aae2cbe 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -11,7 +11,7 @@ currentBuild.result = SUCCESS try { parallel check: { stage('Check') { - timeout(time: 30, unit: 'MINUTES') { + timeout(time: 45, unit: 'MINUTES') { node('ubuntu1804') { checkout scm try { @@ -30,7 +30,7 @@ try { }, jdk10: { stage('JDK 10') { - timeout(time: 30, unit: 'MINUTES') { + timeout(time: 45, unit: 'MINUTES') { node('ubuntu1804') { checkout scm try { @@ -48,7 +48,7 @@ try { }, jdk11: { stage('JDK 11') { - timeout(time: 30, unit: 'MINUTES') { + timeout(time: 45, unit: 'MINUTES') { node('ubuntu1804') { checkout scm try {