Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 504 Bytes

README.adoc

File metadata and controls

19 lines (15 loc) · 504 Bytes

Pipeline: GitHub Groovy Libraries

Allows Pipeline Groovy libraries to be loaded on the fly from public repositories on GitHub. Unlike regular library definitions, no preconfiguration at the global or folder level is needed.

Example:

@Library('github.com/jglick/sample-pipeline-library') _
if (currentBuildExt().hasChangeIn('src')) {
  return
}
node {
  sh 'make'
}