DevOps / Bamboo: Continuous Integration & Deployment Interview Questions
What are stages in a Bamboo plan?
A stage is a logical checkpoint inside a plan — it groups one or more jobs that should be treated as a single phase, such as "Build," "Test," or "Deploy Artifacts."
Stages always run sequentially: the next stage doesn't start until every job in the current stage has finished successfully. Jobs within the same stage, by contrast, can run in parallel if enough agents are available.
This two-level structure is what lets Bamboo express "run unit tests and lint checks at the same time, but only start the integration-test stage once both finish."
More Related questions...