我正在尝试使用具有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个存储库:
使用这些设置,当我在Jenkins中单击“使用参数构建”时,插件会正确加载,但是第二个Git Parameter
错误地在每个遥控器的末尾为分支或标签列表附加了“ 1”。
如何让
Git Parameter Plugin
不能在不之后添加“ 1” 第二个存储库的每个远程服务器?