Jenkins – Extended Choice Parameter plugin Multi-Level Select

choiceJenkinsmulti-levelparametersplugins

OK, so I downloaded this plugin:

https://wiki.jenkins-ci.org/display/JENKINS/Extended+Choice+Parameter+plugin

And select 'Multi-Level Single Select' as the type of parameters.

The problem is that when I have multiple parameters selected and I want to use these parameters in shell in a build, I can only select the LAST parameter

So if I do $PARAM_NAME it only outputs the last parameters, but I WANT ALL THE PARAMETERS THAT I SELECTED, NOT JUST THE LAST ONE !!!

PLEASE HELP !!!

EDIT: PICTURE FOR DEMONSTRATION
enter image description here

Best Answer

You aren't building the parameter based on the selections, you are navigating to the value that you want. I.E. Country --->State ---->City

You aren't building a CountryStateCity variable, you are stating that the City variable is the value you select.

Related Topic