Created
August 28, 2017 18:27
-
-
Save arilivigni/2d3fbb23fb15eda5b8a5f05bb7cf804e to your computer and use it in GitHub Desktop.
Dynamic Shared Libraries
This file contains 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
env.REMOTE = env.BRANCH_NAME ?: 'https://github.com/CentOS/cico-pipeline-library.git' | |
env.ghprbActualCommit = env.ghprbActualCommit ?: 'master' | |
library identifier: "cico-pipeline-lib@${env.ghprbActualCommit}", | |
retriever: modernSCM([$class: 'GitSCMSource', | |
remote: "${env.REMOTE}"]) | |
import org.centos.* | |
node { | |
deleteDir() | |
cicoPipeline {} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment