Last active
August 19, 2022 07:36
-
-
Save scherler/a9ccf4bec282d92ae3c898d036d3cb3d 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('Hello') { | |
checkpoint 'Completed Build1' | |
echo 'Hello World' | |
} | |
stage('Hello2') { | |
echo 'Hello World' | |
} | |
stage('Hello3') { | |
checkpoint 'Completed Build2' | |
echo 'Hello World' | |
} | |
stage('Hello4') { | |
echo 'Hello World' | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment