Jenkinsfile fix

This commit is contained in:
hllvc 2021-07-10 22:09:04 +02:00
parent 94e6dbc7ff
commit 41020dd406

9
Jenkinsfile vendored
View file

@ -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'
}
}
}