Re: Concurrent builds in a BuildFlow

2015-02-19 Thread Jim Adams
I saw that but I don't want to block until it is done, I want to not build it if it is already in the queue. Sent from my iPad > On Feb 19, 2015, at 4:30 AM, James Nord wrote: > > HI, > > I'm not clear on your use case but BuildFlowExtensions[1] contains a "block" > DSL that may help you. >

Re: Concurrent builds in a BuildFlow

2015-02-19 Thread James Nord
HI, I'm not clear on your use case but BuildFlowExtensions[1] contains a "block" DSL that may help you. The block DSL ensures that only one Run (build) of a particular BuildFlow > will execute the steps contained within it concurrently. > It further will only allow the most recent FlowRun to pr

Concurrent builds in a BuildFlow

2015-02-18 Thread Jim Adams
I am using the BuildFlow plugin to attempt to sequence a whole bunch of builds. The same build could be queued by different build flow jobs. The problem is that if the different build flow jobs are run at the same time one will fail if the other has already enqueued the job. Is there a way to j