On 13 October 2015 at 08:40, Nigel Magnay <
nigel....@gmail.com> wrote:
> Ok. That looks exactly what I want, looking at [1]
>
> So if I've correlated correctly, a
>
> stage 'blah', concurrency: 1
>
> Should give me what I want, from the documentation:
>
>> A concurrency of one is useful to let you lock a singleton resource, such
>> as deployment to a single target server. Only one build will deploy at a
>> given time: the newest which passed all previous stages.
>
>
> Which is great, if a little unexpected. What if I wanted every build to go
> through a stage, just one at a time?
>
> I.E: The described concurrency:1 behaviour is great - in effect don't waste
> time deploying already-obsolete versions into production. What about
> concurrency: 1 where it's just because (say) a testing stage needs access to
> a resource (server|license|etc) and it's a 'one at a time' - but we want
> *every* build to run through that stage?