项目作者: sahil87
项目描述 :
A set of common Jenkins pipeline methods
高级语言: Groovy
项目地址: git://github.com/sahil87/jenkins-common.git
jenkins-common
A set of useful Jenkinsfile methods
Usage
#In Jenkinsfile
@Library('github.com/sahil87/jenkins-common@master')
def utils = new cc.sahil87.Utils()
node {
stage('Env properties') {
utils.pingUtils()
utils.printEnvVars()
}
}