jenkinsci / java-client-api

A Jenkins API client for Java
MIT License
901 stars 470 forks source link

Unable to pass multi select parameter to a parameterized build #356

Open Prometej opened 6 years ago

Prometej commented 6 years ago

I cannot find any way to pass parameter value to Extended Choice Parameter (Multi Select).

JobWithDetails job = jenkins.getJob("Build-Multiple"); Map<String,String> params = new HashMap<>(); params.put("packages", "test1,test2,test3"); job.build(params);

liweis commented 4 years ago

any update on this issue? facing the same situation