Created
November 23, 2016 02:06
-
-
Save macg33zr/f4eaaeaa069d0b56c78d49be062c7b80 to your computer and use it in GitHub Desktop.
Jenkins pipeline with script section calling to a vars global helper DSL
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: "" | |
stages { | |
stage('Bar') { | |
steps { | |
script { | |
helloTest { | |
message = "hello this is a test" | |
} | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment