From 41020dd406ebd20db1389b0805d85c1371b9a34e Mon Sep 17 00:00:00 2001 From: hllvc Date: Sat, 10 Jul 2021 22:09:04 +0200 Subject: [PATCH] Jenkinsfile fix --- Jenkinsfile | 9 +++++++++ 1 file changed, 9 insertions(+) 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' + } } }