Re: Build Flow Plugin: No signature of method FlowDelegate.parallel()

2012-11-13 Thread r2_
Woops. Thanks a lot, Nicolas, using the closure fixed my issue. parallel ( {build("agile_code", ENVIRONMENT: params["ENVIRONMENT"], ACTION: params["ACTION"])}, {build("agile_db", ENVIRONMENT: params["ENVIRONMENT"], ACTION: params["ACTION"])} ) On Saturday, November 10, 2012 9:28:18 AM UT

Re: Build Flow Plugin: No signature of method FlowDelegate.parallel()

2012-11-10 Thread nicolas de loof
parallel expect a set of closures, each closure being ran in a separate thread : parallel( { build(A) }, { build(B) } ) 2012/11/9 r2_ > Hey, I got a really cool looking error using Build Flow Plugin. The flow > is just 2 parameterized jobs which should run in parallel on different