Skip to content

Instantly share code, notes, and snippets.

@macg33zr
Created November 23, 2016 02:06
Show Gist options
  • Save macg33zr/f4eaaeaa069d0b56c78d49be062c7b80 to your computer and use it in GitHub Desktop.
Save macg33zr/f4eaaeaa069d0b56c78d49be062c7b80 to your computer and use it in GitHub Desktop.
Jenkins pipeline with script section calling to a vars global helper DSL
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