Skip to content

Instantly share code, notes, and snippets.

@AlexChesters
Last active July 20, 2017 13:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AlexChesters/53fc5d94e03d0ad28622e8b88f1c4b93 to your computer and use it in GitHub Desktop.
Save AlexChesters/53fc5d94e03d0ad28622e8b88f1c4b93 to your computer and use it in GitHub Desktop.
An example of using a Shared Library in a Jenkins Pipeline
@Library('connected-tv-pipeline-shared-library') _
pipeline {
stages {
stage('Install dependencies') {
steps {
script {
new org.casper.Casper().installDependencies()
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment