Thanks for the quick reply.  I am not familiar with the pipeline plugin but 
was wondering how that job gets parameters, is it in the advanced project 
options? The scripting does not look difficult and I would follow the 
jobs_in_parallel.groovy example.

On Friday, December 9, 2016 at 9:18:29 AM UTC-6, Daniel Beck wrote:
>
> Could probably be done with a Pipeline: Get the parameter, tokenize, then 
> call build(…) a bunch of times in a (C-style) loop. 
>
> > On 09.12.2016, at 15:54, Bryce Pepper <[email protected] <javascript:>> 
> wrote: 
> > 
> > I would like to start a new jenkins job for each word passed in a 
> parameter. 
> > 
> > I could use a post 
> > 
> > for eachWord in ${inputParameter//,/ }; do 
> > { 
> >   curl -X POST --silent --show-error --user user:token \ 
> >         
> $JENKINS_URL/job/testJob/buildWithParameters?inputParameter=${eachWord} 
> > } 
> > done 
> > 
> > but I was hoping for a way to passthru the credentials of the user 
> running the parent job. 
> > 
> > 
> > 
> > -- 
> > You received this message because you are subscribed to the Google 
> Groups "Jenkins Users" group. 
> > To unsubscribe from this group and stop receiving emails from it, send 
> an email to [email protected] <javascript:>. 
> > To view this discussion on the web visit 
> https://groups.google.com/d/msgid/jenkinsci-users/fc26224b-2936-4135-ae10-9326e77c01cf%40googlegroups.com.
>  
>
> > For more options, visit https://groups.google.com/d/optout. 
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/83d61fc3-3b96-47d7-b265-5847b67898b8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to