Browse Source

Add OS specific scripts for the long running job

02_06
Michael Jenkins 4 years ago
parent
commit
60a4365736
2 changed files with 11 additions and 0 deletions
  1. +5
    -0
      long-running-job-mac-linux-docker.sh
  2. +6
    -0
      long-running-job-windows.bat

+ 5
- 0
long-running-job-mac-linux-docker.sh View File

@ -0,0 +1,5 @@
#!/bin/bash
for i in {1..30}; do
echo $i;
sleep 1;
done

+ 6
- 0
long-running-job-windows.bat View File

@ -0,0 +1,6 @@
@echo off
for /L %%i in (1,1,30) do (
@echo %%i
@ping localhost -n 2 >NUL
)

Loading…
Cancel
Save