项目作者: sahil87

项目描述 :
A set of common Jenkins pipeline methods
高级语言: Groovy
项目地址: git://github.com/sahil87/jenkins-common.git
创建时间: 2017-02-18T04:00:18Z
项目社区:https://github.com/sahil87/jenkins-common

开源协议:

下载


jenkins-common

A set of useful Jenkinsfile methods

Usage

  1. #In Jenkinsfile
  2. @Library('github.com/sahil87/jenkins-common@master')
  3. def utils = new cc.sahil87.Utils()
  4. node {
  5. stage('Env properties') {
  6. utils.pingUtils()
  7. utils.printEnvVars()
  8. }
  9. }