mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-22 23:35:50 +00:00
added test
This commit is contained in:
parent
8300f3185d
commit
cf481b5ea9
1 changed files with 16 additions and 8 deletions
24
Jenkinsfile
vendored
24
Jenkinsfile
vendored
|
@ -1,10 +1,18 @@
|
||||||
pipeline {
|
pipeline {
|
||||||
agent any
|
agent any
|
||||||
stages {
|
stages {
|
||||||
stage('Build') {
|
stage('Build') {
|
||||||
steps {
|
steps {
|
||||||
sh './mvnw package'
|
sh './mvnw package'
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
stage('test') {
|
||||||
|
steps {
|
||||||
|
sh '''./mvnw test
|
||||||
|
'''
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue