我正在尝试使用 Single_select 选择参数将我的管道设置为参数化管道。
我的管道标题如下所示:
properties(
[
parameters([
[
$class: 'ChoiceParameter',
choiceType: 'PT_SINGLE_SELECT',
description: 'Select your testcase',
filterable: false,
name: 'testCases',
choices: ['HappyFlow', 'NewYork_HappyFlow']
]
]
),
pipelineTriggers([])
]
)
当我运行我的管道时会发生以下情况:
Jenkins 将下拉列表留空,而不是给我在管道属性中指定的选项
如何让下拉列表中填充管道属性中的参数?