Browse Source

Fix things up after merge from 02_06

02_07
Michael Jenkins 4 years ago
parent
commit
d0ac0502e6
3 changed files with 6 additions and 3 deletions
  1. +2
    -1
      02_07.md
  2. +2
    -1
      MAC_LINUX_DOCKER.md
  3. +2
    -1
      WINDOWS.md

02_06.md → 02_07.md View File

@ -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. Use the console to create a freestyle job with one build step.
# WINDOWS SYSTEMS # WINDOWS SYSTEMS
@ -12,6 +12,7 @@ for /L %%i in (1,1,30) do (
@echo %%i @echo %%i
@ping localhost -n 2 >NUL @ping localhost -n 2 >NUL
) )
exit /b 1
``` ```
[Follow this link for more details on Windows](WINDOWS.md) [Follow this link for more details on Windows](WINDOWS.md)

+ 2
- 1
MAC_LINUX_DOCKER.md View File

@ -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. Use the console to create a freestyle job with one build step.
# MacOS, Linux, and Docker # MacOS, Linux, and Docker
@ -12,6 +12,7 @@ for i in {1..30}; do
echo $i; echo $i;
sleep 1; sleep 1;
done done
exit 1
``` ```
# Troubleshooting Errors # Troubleshooting Errors


+ 2
- 1
WINDOWS.md View File

@ -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. Use the console to create a freestyle job with one build step.
# WINDOWS SYSTEMS # WINDOWS SYSTEMS
@ -12,6 +12,7 @@ for /L %%i in (1,1,30) do (
@echo %%i @echo %%i
@ping localhost -n 2 >NUL @ping localhost -n 2 >NUL
) )
exit /b 1
``` ```
# Troubleshooting Errors # Troubleshooting Errors


Loading…
Cancel
Save