You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
Hello,
I'm wondering if it's possible to execute the same step in the pipeline to the same branch at the same time? If my pipeline is still in progress and somebody else make commit to the same branch, pipeline is paused until resumed manually. Is it possible to make execution parallel for the same branch? Or is it possible to configure pipeline to automatically resume paused pipeline?
Thank you
Hi Vladimír and welcome to the community.
This behavior occurs for deployment steps only, steps that have the deployment keyword in the yaml file, e.g. like follows:
- step:
name: Deploy to production
deployment: production-east
script:
- python deployscript.py prod
Concurrently deploying multiple things to an environment may cause problems. When a deployment to a certain environment is in progress and another deployment to the same environment is triggered, then the second deployment will get paused. You can read more info about this in the following documentation:
I'm afraid that it is not possible to automatically resume paused builds at the moment, we have a feature request in our issue tracker:
I would suggest adding your vote in the feature request (by selecting the Vote for this issue link) as the number of votes helps the development team and product managers better understand the demand for new features. You are more than welcome to leave any feedback, and you can also add yourself as a watcher (by selecting the Start watching this issue link) if you'd like to get notified via email on updates.
Implementation of new features is done as per our policy here and any updates will be posted in the feature request.
Please feel free to let me know if you have any questions.
Kind regards,
Theodora
Hello Theodora,
thank you for answer, it's a pity it's not possible to auto resume paused pipeline, but we will be migrating to GitHub soon anyway, so I'm ok with manually resuming pipeline.
Thank you
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.