mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-27 01:15:49 +00:00
Jenkinsfile fix
This commit is contained in:
parent
94e6dbc7ff
commit
41020dd406
1 changed files with 9 additions and 0 deletions
9
Jenkinsfile
vendored
9
Jenkinsfile
vendored
|
@ -1,4 +1,7 @@
|
|||
pipeline {
|
||||
|
||||
agent any
|
||||
|
||||
stages {
|
||||
|
||||
stage('Build') {
|
||||
|
@ -10,6 +13,9 @@ pipeline {
|
|||
args '-v $HOME/.m2:/root/.m2 -v ./app:/root/app'
|
||||
}
|
||||
}
|
||||
steps {
|
||||
echo "App Built"
|
||||
}
|
||||
}
|
||||
|
||||
stage('Run') {
|
||||
|
@ -20,6 +26,9 @@ pipeline {
|
|||
args '-v $HOME/.m2:/root/.m2 -v ./app:/root/app'
|
||||
}
|
||||
}
|
||||
steps {
|
||||
echo 'App Running'
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue