mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-22 15:25:49 +00:00
Update Jenkinsfile
This commit is contained in:
parent
07a8e3e0fa
commit
4a7fc44c96
1 changed files with 19 additions and 0 deletions
19
Jenkinsfile
vendored
19
Jenkinsfile
vendored
|
@ -1,10 +1,29 @@
|
|||
pipeline {
|
||||
agent any
|
||||
options {
|
||||
skipStagesAfterUnstable()
|
||||
}
|
||||
stages {
|
||||
stage('Build') {
|
||||
steps {
|
||||
echo 'Building'
|
||||
sh './mvnw package'
|
||||
}
|
||||
}
|
||||
stage('Test') {
|
||||
steps {
|
||||
echo 'Testing'
|
||||
}
|
||||
}
|
||||
stage('Package') {
|
||||
steps {
|
||||
echo 'Package'
|
||||
}
|
||||
}
|
||||
stage('Deploy') {
|
||||
steps {
|
||||
echo 'Deploying'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue