Skip to content

Instantly share code, notes, and snippets.

@HRMPW
Created April 12, 2017 20:07
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 HRMPW/92231e7b2344f20d9cc9d5f2eb778a54 to your computer and use it in GitHub Desktop.
Save HRMPW/92231e7b2344f20d9cc9d5f2eb778a54 to your computer and use it in GitHub Desktop.
Example using a shell script from the shared library resources directory.
pipeline {
agent any
libraries {
lib('my-library@master')
}
stages {
stage("Test") {
steps {
sh (libraryResource('echo.sh'))
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment