I have a fairly simple problem, but I can`t find a good solution online or in the documentation so far.
I have a jenkins job that has two String Parameters (param1, param2)
I want to be able to add more than one value to param2, so that the job executes a new iteration for each value of param2.
Job Execution 1: Param1, Param2[Value1]
Job Execution 2: Param1, Param2[Value2]
Job Execution 3: Param1, Param2[Value3]
The trigger is a Cron (Build Schedule) once a week, so choice type parameters are not a good option.
I`m aware I could use the jenkins API to call the job with the parameters I want with looped curl commands or such, or to create a second job, (MultiJob) that would call my job with different parameter combinations.
I`m looking to see is there a way of doing it all in one job.