我正在使用Jenkins管道插件和Jenkinsfile。
在一个名为vms.git的存储库中,我有Jenkinsfile和它构建的应用程序。
我有另一个名为deploy.git的存储库,它包含我想用来在vms.git中部署应用程序的脚本。
目前我的Jenkinsfile看起来像这样
node {
stage 'build'
checkout scm
我在作业配置中定义了vms.git repo。
所以我想要检查两个存储库,然后使用vms.git中的Jenkinsfile来定义构建的其余部分。我想在其他管道中重用deploy.git脚本,所以我不想在其中放置Jenkins文件。
答案 0 :(得分:30)
您可以使用checkout
签出多个目录,但是您必须指定要将其签出的目录。您可以使用jenkins(Snippet generator bellow script字段)生成片段。
选择checkout,下一个git存储库,在Additional Behaviors中选择:checkout into sub directory。
如果您有2个存储库,则可以从load
中使用的存储库加载脚本。例如:
node {
// first repository
checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [[$class: 'RelativeTargetDirectory', relativeTargetDir: 'subdirectory1']], submoduleCfg: [], userRemoteConfigs: [[url: 'repo1.git']]])
// second repository
checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [[$class: 'RelativeTargetDirectory', relativeTargetDir: 'subdirectory2']], submoduleCfg: [], userRemoteConfigs: [[url: 'repo2.git']]])
// run first script
load 'subdirectory1/Jenkinsfile'
// run second script
load 'subdirectory2/Jenkinsfile'
}
答案 1 :(得分:24)
可以找到另一个在单个管道中处理多个Git存储库的优雅解决方案at this thread。
node {
dir('RepoOne') {
git url: 'https://github.com/somewhere/RepoOne.git'
}
dir('RepoTwo') {
git url: 'https://github.com/somewhere/RepoTwo.git'
}
sh('. RepoOne/build.sh')
sh('. RepoTwo/build.sh')
}