jenkins 多选框

背景
jenkins自带的参数化不支持多选框,不过有插件支持:Extended Choice Parameter Plug-In
插件地址: https://plugins.jenkins.io/extended-choice-parameter

使用教程

Name -- 定义变量名

Parameter Type -- check boxes 复选框

 

jenkins 多选框_第1张图片

 

设置好,展示如下:

jenkins 多选框_第2张图片

 

在后续操作中如果要使用这个多选框的话,使用${emails}

这里注意的是:不要勾选Quote Value


勾选了quote value的话,echo ${emails} 显示 <"[email protected]">

不勾选的话,echo ${emails} 显示 [email protected] ,没有<>和“”

 

当然勾选了肯定其他用途,暂时不知道怎么使用

 

虽千万人,吾往矣!

你可能感兴趣的:(运维)