Your message is a bit confusing, but it appears that you are asking for a parameter option screen to be display after the job has started; this doesn't really fit the Jenkins model, as the request to run a job is placed in a queue, and when an executor becomes available the job is started.
It's certainly possible to dynamically (upon request) build lists of choices for job parameters, and I'm pretty sure there are already plugins that do that. They don't start the job itself, though, the logic for constructing these lists is in the plugin. ----- Original Message ----- From: [email protected] To: [email protected] At: Oct 8 2013 03:48:49 Hi after using Jenkins a long time now, it's time to write my first plugin. :-) I need to add a new entry to the list of options for a parameterized build. That's not the problem and all necessary configuration options are already implemented and usable. Now I'm struggling with the problem, that there must be some steps performed between the click on "Build with parameters" to start the job and the next step which shows the parameter screen. To be more detailed, my plugin needs to prepare a list of options, from which the user who triggers the build, must choose one. This list can only be prepared after starting the job, so no chance to setup it during job configuration. Until now I'm unable to find out, how to do this. Maybe it's too easy but please let me know how to trigger code on my plugin implementation right between triggering the job but before the parameter screen is opened. Thx a lot in advance. Kind regards, Yves -- You received this message because you are subscribed to the Google Groups "Jenkins Developers" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out. -- You received this message because you are subscribed to the Google Groups "Jenkins Developers" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
