mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-21 14:55:51 +00:00
Update Jenkinsfile
This commit is contained in:
parent
9638347152
commit
5a73bc8bcc
1 changed files with 10 additions and 3 deletions
13
Jenkinsfile
vendored
13
Jenkinsfile
vendored
|
@ -8,18 +8,25 @@ pipeline {
|
|||
}
|
||||
stage('Test') {
|
||||
steps {
|
||||
//
|
||||
bat 'make check'
|
||||
}
|
||||
}
|
||||
stage('Package') {
|
||||
steps {
|
||||
//
|
||||
echo 'Testing'
|
||||
}
|
||||
}
|
||||
stage('Deploy') {
|
||||
steps {
|
||||
//
|
||||
echo 'Deploy'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
post {
|
||||
failure {
|
||||
mail to: 'jessica.allaire.96@hotmail.com',
|
||||
subject: "Failed Pipeline: ${currentBuild.fullDisplayName}",
|
||||
body: "Something is wrong with ${env.BUILD_URL}"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue