2013/7/1 444 <[email protected]> > I want to run a number of builds in parallel, ignoring all build statuses > (failed, aborted, etc). > > I have the following set up: > > parallel ( > { ignore(ABORTED) { > build("BUILDA") > } } , > { ignore(ABORTED) { > build("BUILDB) > } } > ) > > > Lets say "BUILDA" hangs, > > I manually "rebuild" it by using the Rebuild plugin, then abort the > hanging old job "BUILDA", end up having a failure for project containing > the above code... >
not expected, probably a bug in ignore() to capture cancelled job > > I don't particularly care that the Build Flow Plugin doesn't capture my > 'rebuilt' job. I am more interested if I am doing something wrong.. - I > want the job to ignore all build statuses and report a SUCCESS. > build flow anyway won't capture you rebuild as this second run wasn't triggered by the flow, so have no reference to. > > -- > 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]. > For more options, visit https://groups.google.com/groups/opt_out. > > > -- 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]. For more options, visit https://groups.google.com/groups/opt_out.
