Jenkins Build periodically with parameters doesn't work

Viewed 7994

I'm using Jenkins 2.46.2 version. I have installed Parameterized Scheduler plugin to trigger the build periodically with different parameter.

enter image description here But it fails to trigger the build at scheduled time.

4 Answers

You have a problem with the ";" on parameters. you have to insert space after each parameter, for example: H/2 * * * * % EndMarket=can ;GitBranch=DevelopmantBranch

try without spaces between params, like:

0 8  * * * % base_url=https://www.example.com;suite_type=Regression

in my case, my parameter is Choice Parameter, so if I set the scheduler below and 'valueabc' is not in the list of choice, it will fail to start H/15 * * * * %name=valueabc

Related