stages

Define the order of pipeline stages.

Supported: list of stage names

Examples

Define stages

stages:
  - build
  - test
  - deploy

build-job:
  stage: build
  script: echo "build"

test-job:
  stage: test
  script: echo "test"

deploy-job:
  stage: deploy
  script: echo "deploy"