mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-17 13:05:49 +00:00
Try to enable parallel
This commit is contained in:
parent
2ff6113dc2
commit
bb9b6e3e8e
1 changed files with 19 additions and 20 deletions
39
Jenkinsfile
vendored
39
Jenkinsfile
vendored
|
@ -1,6 +1,6 @@
|
|||
pipeline {
|
||||
|
||||
agent any
|
||||
|
||||
agent none
|
||||
|
||||
stages {
|
||||
|
||||
|
@ -28,26 +28,25 @@ 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
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"performance-tests": {
|
||||
node("test") {
|
||||
echo "performance tests"
|
||||
sh "ls -rtl"
|
||||
sleep 20
|
||||
}
|
||||
}
|
||||
)
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue