mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-21 23:05:50 +00:00
Update Jenkinsfile
This commit is contained in:
parent
ad1752c622
commit
2c766ab8c3
1 changed files with 8 additions and 23 deletions
31
Jenkinsfile
vendored
31
Jenkinsfile
vendored
|
@ -1,25 +1,10 @@
|
||||||
pipeline {
|
pipeline {
|
||||||
agent any
|
agent any
|
||||||
stages {
|
stages {
|
||||||
stage('Build') {
|
stage('Build') {
|
||||||
steps {
|
steps {
|
||||||
bat './mvnw package'
|
sh './mvnw package'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('Test'){
|
}
|
||||||
steps {
|
|
||||||
bat './mvnw test'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
stage('Package'){
|
|
||||||
steps{
|
|
||||||
bat './mvnw package'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
stage('Deploy'){
|
|
||||||
steps{
|
|
||||||
echo 'Deploy'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue