mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-18 13:35:50 +00:00
Updated Jenkinsfile
This commit is contained in:
parent
b05ee56db1
commit
05e69c51cc
1 changed files with 10 additions and 2 deletions
10
Jenkinsfile
vendored
10
Jenkinsfile
vendored
|
@ -3,8 +3,16 @@ pipeline {
|
||||||
stages {
|
stages {
|
||||||
stage('test') {
|
stage('test') {
|
||||||
steps {
|
steps {
|
||||||
|
parallel(
|
||||||
|
"test": {
|
||||||
echo 'hello world'
|
echo 'hello world'
|
||||||
sh 'mvn compile'
|
|
||||||
|
},
|
||||||
|
"": {
|
||||||
|
build 'pet clinic'
|
||||||
|
|
||||||
|
}
|
||||||
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('done') {
|
stage('done') {
|
||||||
|
|
Loading…
Reference in a new issue