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
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