One of the options in my Jenkins assembly is an advanced selection parameter, which appears as a choice of comma separated values when invoking the assembly from the assembly web page.
However, I also need to call the assembly using wget + URL .
So, in the format:
wget "${JENKINS_URL}/job/buildname/buildWithParameters?ECP_LIST=blah1&token=token"
Say that my advanced selection parameter ECP_LIST has possible values: blah1, blah2, blah3, blah4.
if I call for example:
wget "${JENKINS_URL}/job/buildname/buildWithParameters?ECP_LIST=blah3&token=token"
build starts normally with blah3 for parameter EPC_LIST.
However, if I want to call it with 2 or more values, it just passes an empty value to the parameter.
I tried to separate the values using different things like spaces, encoded comma, semicolon. I’m not lucky to find the answer here or on Google.
jenkins
junebob
source share