Update Jenkinsfile

This commit is contained in:
ametgud4u 2020-07-25 02:47:26 +05:30 committed by GitHub
parent 6b45979bd7
commit 30d7002b5b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

5
Jenkinsfile vendored
View file

@ -1,4 +1,4 @@
node('master'){
node('centos_hosts'){
stage('scm'){
git 'https://github.com/ametgud4u/spring-petclinic.git'
}
@ -16,5 +16,8 @@ node('master'){
junit '**/target/surefire-reports/*.xml'
archiveArtifacts 'target/*.jar'
}
stage('Create Docker Image ') {
sh label: '', script: 'BuildImage'
}
}