fix parallel tests in pipeline 2

This commit is contained in:
Michael Hoennig 2024-11-05 12:32:20 +01:00
parent 7c9b584b97
commit e9bbd78617

26
Jenkinsfile vendored
View File

@ -33,22 +33,20 @@ pipeline {
} }
stage ('Tests') { stage ('Tests') {
stage('Tests') { parallel {
parallel { stage('Unit-/Integration/Acceptance-Tests') {
stage('Unit-/Integration/Acceptance-Tests') { steps {
steps { sh './gradlew check --no-daemon -x pitest -x dependencyCheckAnalyze -x importOfficeData -x importHostingAssets'
sh './gradlew check --no-daemon -x pitest -x dependencyCheckAnalyze -x importOfficeData -x importHostingAssets'
}
} }
stage('Import-Tests') { }
steps { stage('Import-Tests') {
sh './gradlew importOfficeData importHostingAssets --no-daemon' steps {
} sh './gradlew importOfficeData importHostingAssets --no-daemon'
} }
stage ('Scenario-Tests') { }
steps { stage ('Scenario-Tests') {
sh './gradlew scenarioTests --no-daemon' steps {
} sh './gradlew scenarioTests --no-daemon'
} }
} }
} }