Re: Build flow job gets indecipherable Groovy error

2015-06-16 Thread Stefan Thomasson
16 jun 2015 kl. 02:08 skrev CLOSE Dave dave.cl...@us.thalesgroup.com: I wrote: I have a Jenkins job using the build flow plugin. A portion of it looks like the code below. parallel ( { ignore ( FAILURE ) { build ( job1, BRANCH: params [ BRANCH ] ) } }, { ignore ( FAILURE ) {

Re: Build flow job gets indecipherable Groovy error

2015-06-15 Thread CLOSE Dave
I wrote: I have a Jenkins job using the build flow plugin. A portion of it looks like the code below. parallel ( { ignore ( FAILURE ) { build ( job1, BRANCH: params [ BRANCH ] ) } }, { ignore ( FAILURE ) { build ( job2, BRANCH: params [ BRANCH ] ) } } ) I'd like to replace the

Re: Build flow job gets indecipherable Groovy error

2015-06-13 Thread Stefan Thomasson
Hi, I am not sure that this is what cause the error but I think you forgot a comma between the two ignores 13 jun 2015 kl. 02:49 skrev CLOSE Dave dave.cl...@us.thalesgroup.com: I have a Jenkins job using the build flow plugin. A portion of it looks like the code below. parallel ( {

Build flow job gets indecipherable Groovy error

2015-06-12 Thread CLOSE Dave
I have a Jenkins job using the build flow plugin. A portion of it looks like the code below. parallel ( { ignore ( FAILURE ) { build ( job1, BRANCH: params [ BRANCH ] ) } }, { ignore ( FAILURE ) { build ( job2, BRANCH: params [ BRANCH ] ) } } ) I'd like to replace the BRANCH parameter