diff --git a/Jenkinsfile b/Jenkinsfile index fc067e37b..742fd963f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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' + } } }