changed dummy step

This commit is contained in:
matthewpdias 2018-03-07 14:20:09 -08:00
parent ac575a4f16
commit d996061554

View file

@ -16,7 +16,7 @@ pipeline {
} }
} }
steps { steps {
sh 'mvn clean deploy' sh 'mvn clean install'
} }
} }
stage('Build container') { stage('Build container') {
@ -43,7 +43,8 @@ pipeline {
stage('Smoke-Test') { stage('Smoke-Test') {
agent any agent any
steps { steps {
sh 'docker ps -a' //sample dummy step
sh 'sleep 4'
} }
} }
stage('Stop local container') { stage('Stop local container') {