Jenkins pipeline中下载多个配置库

来源:互联网 发布:5s4g网络怎么设置 编辑:程序博客网 时间:2024/06/08 20:09

场景:

       流水构建场景有时候需要下载多个配置库的代码       



参考https://stackoverflow.com/questions/40224272/using-a-jenkins-pipeline-to-checkout-multiple-git-repos-into-same-job


例子(在jenkins2.60.3中验证过)

   stage('Preparation') { // for display purposes
     

      dir('Dashboard') {
       checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[credentialsId: '23c8f01c-e5b8-410f-bd02-e2fecc3ed49f', url: 'http://test.com/xxxx/IDEDashboard.git']]])
    }
    
           dir('Springboot') {
       checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[credentialsId: '23c8f01c-e5b8-410f-bd02-e2fecc3ed49f', url: 'http://test.com/xxxx/Springboot.git']]])
    }

}


PS:checkout之类的语法可以由Snippet Generator辅助生成

http://xx.xx.xx.xx:8080/job/SrpingBootPipeline/pipeline-syntax/

原创粉丝点击