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... 

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.

-- 
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.


Reply via email to