From 7b0803150b39b252a12dfa7c96e58d34b9f223eb Mon Sep 17 00:00:00 2001 From: Kurt Madel Date: Fri, 29 Sep 2017 14:01:32 -0400 Subject: [PATCH] Update Exercise-03.md --- Exercise-03.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Exercise-03.md b/Exercise-03.md index 851c0d0..86b10c9 100644 --- a/Exercise-03.md +++ b/Exercise-03.md @@ -4,9 +4,10 @@ In this exercise we are going to quickly create a new pipeline to demonstrate ho ``` pipeline { - agent any + agent none stages { stage('One') { + agent any steps { echo 'Stage One - Step 1' } @@ -18,6 +19,7 @@ pipeline { } } stage('Two') { + agent any steps { echo 'Stage Two - Step 1' } @@ -58,4 +60,4 @@ Once those repositories are forked: 10. Click on **Save** 11. Click on **Scan Organization Now** -When the scan is complete your **Github Organization** project should now have both the **sample-rest-server** project and the **maven-project**. \ No newline at end of file +When the scan is complete your **Github Organization** project should now have both the **sample-rest-server** project and the **maven-project**.