使用Jenkins Git Parameter插件配置2个仓库

时间:2019-06-19 22:53:49

标签: jenkins jenkins-plugins

我正在尝试使用具有2个存储库的插件Git Parameter配置带有参数的构建。

Jenkinsfile中,我在此处定义了两个存储库:

gitParameter defaultValue: 'origin/develop', name: 'branchOrTag', type: 'PT_BRANCH_TAG', quickFilterEnabled: true, sortMode: 'ASCENDING_SMART'
gitParameter defaultValue: 'origin/develop', name: 'targetBranch', type: 'PT_BRANCH_TAG', useRepository: http://example.com', quickFilterEnabled: true, sortMode: 'ASCENDING_SMART'

要使Git Parameter Plugin正常工作,不能使用useRepository设置定义第一个。我不确定为什么会这样,但是如果为两个插件都定义了插件,插件就会中断。

在配置中,我为SCM配置了相同的2个存储库:

enter image description here

使用这些设置,当我在Jenkins中单击“使用参数构建”时,插件会正确加载,但是第二个Git Parameter错误地在每个遥控器的末尾为分支或标签列表附加了“ 1”。

enter image description here

  

如何让Git Parameter Plugin不能在之后添加“ 1”   第二个存储库的每个远程服务器?

0 个答案:

没有答案