1. 程式人生 > >Jenkins pipeline中下載多個配置庫

Jenkins pipeline中下載多個配置庫

場景:

       流水構建場景有時候需要下載多個配置庫的程式碼       

參考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']]])
    }

}

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