Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 21:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×How can we run nested paralellel and consecutive steps?
We have a monorepo and need to build a few projects the flow would typically be:
Run all project tests in parallel,
and in each of those parallel steps, once the tests pass, build the artifacts
Hi Tomas,
At the moment it is not possible to run steps sequentially within different parallel streams in pipelines. You would have to run the tests and build the artifacts in the same step (though not the same script command).
- parallel:
- step:
script:
- test project 1
- build project 1 artifact
- step:
script:
- test project 2
- build project 2 artifact
Can you also add a feature request for this at https://bitbucket.org/site/master/issues/ since other users may also want this feature.
If you have any questions let me know.
Cheers,
Tom
Atlassian Government Cloud has achieved FedRAMP Authorization at the Moderate level! Join our webinar to learn how you can accelerate mission success and move work forward faster in cloud, all while ensuring your critical data is secure.
Register Now
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.