diff --git a/README.md b/README.md index 40efacc879..55ef80390e 100644 --- a/README.md +++ b/README.md @@ -13,3 +13,5 @@ The `jenkins` directory contains an example of the `Jenkinsfile` (i.e. Pipeline) you'll be creating yourself during the tutorial and the `scripts` subdirectory contains a shell script with commands that are executed when Jenkins processes the "Deliver" stage of your Pipeline. + +Just testing and making sure this multi branch pipeline works well along with poll SCm! diff --git a/jenkins/Jenkinsfile b/jenkins/Jenkinsfile index 52eed25843..51633e5d8f 100644 --- a/jenkins/Jenkinsfile +++ b/jenkins/Jenkinsfile @@ -21,10 +21,31 @@ pipeline { sh './jenkins/scripts/deliver.sh' } } - stage('Complete') { + stage('Complete-1') { steps { - echo 'Job Complete!' + echo 'Job Complete-1!' } } + stage('Complete-2') { + steps { + echo 'Job Complete-2!' + } + } + stage('Complete-3') { + steps { + echo 'Job Complete-3!' + } + } + stage('Complete-4') { + steps { + echo 'Job Complete-4!' + } + } + stage('Complete-5') { + steps { + echo 'Job Complete-5!' + } + } + } }