I am evaluating buildkite as an alternative to our current continuous delivery system. It looks really good, however, I am struggling with the concurrency system.
We have a multi-step deployment pipeline that will be triggered when our test pipeline completes successfully. Deployment to certain environments can happen at the same time but the deployment to production can only happen after all the lower environments have deployed successfully. This is all fine and I have it working with key
and depends_on
. However, we would like there to be only one run of the whole deployment pipeline running at any one time. I can’t figure out how to achieve this with concurrency
and concurrency_group
as these only act on a step level.
Is there an accepted way to achieve this kind of concurrency control?
I notice that this has been asked in the features channel already but there has been no response.