Created
September 1, 2016 21:13
-
-
Save jaredwy/9bf2519e91fc5ac5f7c54ab0de22b37c 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
pipeline { | |
agent label:'master' | |
stages { | |
stage('build') { | |
execute 'echo step1' | |
execute 'echo step2' | |
execute ''' | |
echo 'Multiline' | |
echo 'Example' | |
''' | |
execute 'not using shell' | |
} | |
} | |
} | |
execute is something like | |
if(platform == windows) | |
bat command | |
else | |
sh command | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment