diff --git a/02_06.md b/02_07.md similarity index 92% rename from 02_06.md rename to 02_07.md index 7c278b1..3cd4c2a 100644 --- a/02_06.md +++ b/02_07.md @@ -1,4 +1,4 @@ -# Learning Jenkins, 02-06: Run and Monitor Jobs +# Learning Jenkins, 02-07: Run and Monitor Jobs Use the console to create a freestyle job with one build step. # WINDOWS SYSTEMS @@ -12,6 +12,7 @@ for /L %%i in (1,1,30) do ( @echo %%i @ping localhost -n 2 >NUL ) +exit /b 1 ``` [Follow this link for more details on Windows](WINDOWS.md) diff --git a/MAC_LINUX_DOCKER.md b/MAC_LINUX_DOCKER.md index 143a172..72d419e 100644 --- a/MAC_LINUX_DOCKER.md +++ b/MAC_LINUX_DOCKER.md @@ -1,4 +1,4 @@ -# Learning Jenkins, 02-06: Run and Monitor Jobs +# Learning Jenkins, 02-07: Run and Monitor Jobs Use the console to create a freestyle job with one build step. # MacOS, Linux, and Docker @@ -12,6 +12,7 @@ for i in {1..30}; do echo $i; sleep 1; done +exit 1 ``` # Troubleshooting Errors diff --git a/WINDOWS.md b/WINDOWS.md index aeb9b0e..dcbc19e 100644 --- a/WINDOWS.md +++ b/WINDOWS.md @@ -1,4 +1,4 @@ -# Learning Jenkins, 02-06: Run and Monitor Jobs +# Learning Jenkins, 02-07: Run and Monitor Jobs Use the console to create a freestyle job with one build step. # WINDOWS SYSTEMS @@ -12,6 +12,7 @@ for /L %%i in (1,1,30) do ( @echo %%i @ping localhost -n 2 >NUL ) +exit /b 1 ``` # Troubleshooting Errors