From 885bee09a504a03c415bc5b59418f0d2c37a4149 Mon Sep 17 00:00:00 2001 From: Joakim Erdfelt Date: Mon, 26 Sep 2016 09:47:25 -0700 Subject: [PATCH] Adjusting Jenkins timeouts --- Jenkinsfile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index b9ffab85283..8bc326a5a85 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -21,8 +21,8 @@ node('linux') { try { stage 'Compile' - timeout(15) { - withEnv(mvnEnv) { + withEnv(mvnEnv) { + timeout(15) { sh "mvn -B clean install -Dtest=None" } } @@ -34,8 +34,8 @@ node('linux') { try { stage 'Javadoc' - timeout(15) { - withEnv(mvnEnv) { + withEnv(mvnEnv) { + timeout(15) { sh "mvn -B javadoc:javadoc" } } @@ -47,8 +47,8 @@ node('linux') { try { stage 'Test' - timeout(60) { - withEnv(mvnEnv) { + withEnv(mvnEnv) { + timeout(60) { // Run test phase / ignore test failures sh "mvn -B install -Dmaven.test.failure.ignore=true" // Report failures in the jenkins UI