mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2026-01-08 19:31:12 +00:00
20 lines
285 B
Groovy
20 lines
285 B
Groovy
pipeline {
|
|
|
|
agent any
|
|
|
|
stages {
|
|
|
|
stage ("Build"){
|
|
steps {
|
|
sh "./mvnw install"
|
|
}
|
|
}
|
|
|
|
stage ("Run unit-test"){
|
|
|
|
steps {
|
|
sh "./mvnw test"
|
|
}
|
|
}
|
|
}
|
|
}
|