From 5db073f0229301dc8301eb955dd573282afd2ed6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Pailloncy?= Date: Mon, 6 Mar 2017 20:00:13 +0100 Subject: [PATCH] Heuu --- Jenkinsfile | 33 +++++++++++++++++---------------- 1 file changed, 17 insertions(+), 16 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 89be8b24e..b01454be6 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -28,25 +28,26 @@ pipeline { stage("tests") { steps { - parallel ( - "static-analysis": { - node("build") { - unstash "sources" - withMaven(maven:"M3") { - withSonarQubeEnv('sonarqube') { - sh 'mvn sonar:sonar' - } + parallel ( + "static-analysis": { + node("build") { + unstash "sources" + withMaven(maven:"M3") { + withSonarQubeEnv('sonarqube') { + sh 'mvn sonar:sonar' } } - }, - "performance-tests": { - node("test") { - echo "performance tests" - sh "ls -rtl" - sleep 20 - } + sleep 30 } - ) + }, + "performance-tests": { + node("build") { + echo "performance tests" + sh "ls -rtl" + sleep 20 + } + } + ) } }