mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-26 17:35:49 +00:00
added java version sanity check
This commit is contained in:
parent
3ccfb63ded
commit
f74cb276fe
1 changed files with 5 additions and 0 deletions
|
@ -7,6 +7,11 @@ pipeline{
|
||||||
}
|
}
|
||||||
|
|
||||||
stages{
|
stages{
|
||||||
|
stage("sanity check"){
|
||||||
|
steps{
|
||||||
|
sh "java --version"
|
||||||
|
}
|
||||||
|
}
|
||||||
stage("build"){
|
stage("build"){
|
||||||
steps{
|
steps{
|
||||||
sh 'mvn -Dmaven.test.failure.ignore=true compile'
|
sh 'mvn -Dmaven.test.failure.ignore=true compile'
|
||||||
|
|
Loading…
Reference in a new issue