背景
jenkins自帶的參數化不支持多選框,不過有插件支持:Extended Choice Parameter Plug-In
插件地址: https://plugins.jenkins.io/extended-choice-parameter
使用教程
Name -- 定義變量名
Parameter Type -- check boxes 復選框

設置好,展示如下:

在后續操作中如果要使用這個多選框的話,使用${emails}
這里注意的是:不要勾選Quote Value
勾選了quote value的話,echo ${emails} 顯示 <"test@111.com">
不勾選的話,echo ${emails} 顯示 test@111.com ,沒有<>和“”
當然勾選了肯定其他用途,暫時不知道怎么使用
