Created
June 28, 2016 13:16
-
-
Save scherler/6f368fb2477b0c307f7508cc54324532 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| node { | |
| stage 'prepare to sing along' | |
| sh 'echo prepare to sing along ; echo we will show the lyrics in the next stages; echo we will count down in the next stage;sleep 16' | |
| stage 'Countdown' | |
| sh 'echo prepare now;sleep 1; echo 5;sleep 1; echo 4;sleep 1; echo 3;sleep 1; ' | |
| stage 'SING' | |
| sh 'echo ay oh - let s go 2*; sleep 5; ' | |
| stage 'SING2' | |
| sh 'echo ay oh - let s go *2; sleep 6; ' | |
| } | |
| node { | |
| stage 'outro' | |
| sh 'echo Thanks for watching our pipeline karaoke, JENKINS-36211, yours the blueocean team.' | |
| } | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment