一尘不染

如何在詹金斯文件中传递多选择值参数(Groovy)

jenkins

例如,以下代码用于单个选择值

        choice{
           choices: 'Box\nOneDrive\nSharePointOnline\nGmail\nGDrive\nGenericS3',
           defaultValue: 'box', 
           description:  'Connector to build',
           name: 'On_Cloud_Devices_To_Test'
         }

阅读 319

收藏
2020-07-25

共1个答案

一尘不染

我会用booleanParam的。然后,用户可以勾选所有必需的选项。

booleanParam(defaultValue: false, name: 'ALL', description: 'Process all'),
booleanParam(defaultValue: false, name: 'OPTION_1', description: 'Process option 1'),
booleanParam(defaultValue: false, name: 'OPTION_2', description: 'Process options 2'),
2020-07-25