|
|
3 years ago | |
|---|---|---|
| .github | 4 years ago | |
| .gitignore | 4 years ago | |
| CONTRIBUTING.md | 4 years ago | |
| LICENSE | 4 years ago | |
| MAC_LINUX_DOCKER.md | 4 years ago | |
| NOTICE | 4 years ago | |
| README.md | 4 years ago | |
| WINDOWS.md | 3 years ago | |
| long-running-job-mac-linux-docker.sh | 4 years ago | |
| long-running-job-windows.bat | 4 years ago | |
Create a freestyle job with one build step.
If you are running Jenkins on a Windows system:
Execute Windows batch command build step@echo off
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
If you are running Jenkins on MacOS, Linux, or Docker:
Execute shell build step.#!/bin/bash
for i in {1..30}; do
echo $i;
sleep 1;
done
Follow this link for more details on MacOS, Linux, and Docker