Stages: A stage consists of one or more jobs. Stages run sequentially in the order they are defined.
Example
The following example shows a stage configuration:
stages:
build_stage:
name: Build Stage
jobs:
build_job:
Detailed explanation
stages
Pipeline stages. Each stage is a combination of one or more jobs.
stages.<stage_id>
Required. A unique identifier for the stage. The value can contain only letters, digits, and underscores (_), and must start with a letter. Maximum length: 64 characters.
stages.<stage_id>.name
The display name of the stage. If not specified, the stage_id value is used. Maximum length: 64 characters.
stages.<stage_id>.jobs
The jobs within the stage. A job can be a combination of multiple steps that share a workspace, or a component call that runs a specified task. Component tasks support additional operations such as retries and skips. For more information, see Jobs.