Default Stages

By default there are 3 main stages:

build-job:
    stage: build
    script: echo Build

test-job:
    stage: test
    script: echo Test

deploy-job:
    stage: deploy
    script: echo Deploy

  • build
  • test
  • deploy

Default stages