fix parallel tests in pipeline 2
This commit is contained in:
parent
7c9b584b97
commit
e9bbd78617
26
Jenkinsfile
vendored
26
Jenkinsfile
vendored
@ -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'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user