Stages

Build stages definition

Build stages group jobs, and run jobs in each stage in parallel, but run one stage after another sequentially.

This node uses the key name as a default prefix if not given a map.

See also

Types

Keys

If given a map, the following keys are supported:

Examples

stages:
- name: unit tests
  if: branch = master
stages:
- unit tests
stages:
  name: unit tests
  if: branch = master
stages: unit tests

Beta