From e9bbd78617f1223881ebc661e3bd4e3bf674e0a2 Mon Sep 17 00:00:00 2001 From: Michael Hoennig Date: Tue, 5 Nov 2024 12:32:20 +0100 Subject: [PATCH] fix parallel tests in pipeline 2 --- Jenkinsfile | 26 ++++++++++++-------------- 1 file changed, 12 insertions(+), 14 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index e15bf80a..ca29d193 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -33,22 +33,20 @@ pipeline { } stage ('Tests') { - stage('Tests') { - parallel { - stage('Unit-/Integration/Acceptance-Tests') { - steps { - sh './gradlew check --no-daemon -x pitest -x dependencyCheckAnalyze -x importOfficeData -x importHostingAssets' - } + parallel { + stage('Unit-/Integration/Acceptance-Tests') { + steps { + sh './gradlew check --no-daemon -x pitest -x dependencyCheckAnalyze -x importOfficeData -x importHostingAssets' } - stage('Import-Tests') { - steps { - sh './gradlew importOfficeData importHostingAssets --no-daemon' - } + } + stage('Import-Tests') { + steps { + sh './gradlew importOfficeData importHostingAssets --no-daemon' } - stage ('Scenario-Tests') { - steps { - sh './gradlew scenarioTests --no-daemon' - } + } + stage ('Scenario-Tests') { + steps { + sh './gradlew scenarioTests --no-daemon' } } }