diff --git a/jenkinsfiles/example b/jenkinsfiles/example index 22cab5b97..a41d8d360 100644 --- a/jenkinsfiles/example +++ b/jenkinsfiles/example @@ -15,7 +15,7 @@ pipeline { sh 'mvn clean install' } } - stage('Build container') { + stage('Build') { agent any steps { script { @@ -29,7 +29,7 @@ pipeline { } } } - stage('Deploy container') { + stage('Deploy to Dev') { agent any steps { sh 'docker rm -f petclinic-tomcat-temp || true' @@ -43,5 +43,12 @@ pipeline { sh 'sleep 4' } } + stage('Another stage') { + agent any + steps { + //sample dummy step + sh 'sleep 4' + } + } } }