Simplify stage names

This commit is contained in:
Andrejs Cunskis 2022-05-10 17:26:45 +03:00
parent fe331541d7
commit 1c07a37ea3
No known key found for this signature in database
GPG key ID: 87CB75083F227241
4 changed files with 8 additions and 9 deletions

View file

@ -13,11 +13,10 @@ default:
- gitlab-org-docker - gitlab-org-docker
stages: stages:
- test - custom
- deploy - gitlab
- deploy-gitlab - gitlab-assets
- deploy-gitlab-assets - gitaly
- deploy-gitaly
- automation - automation
variables: variables:

View file

@ -1,5 +1,5 @@
.build_and_push: .build_and_push:
stage: deploy stage: custom
needs: [] needs: []
script: script:
- ./scripts/lib/custom-docker-build - ./scripts/lib/custom-docker-build

View file

@ -3,7 +3,7 @@ gitaly:
needs: [] needs: []
extends: extends:
- .build_and_push - .build_and_push
stage: deploy-gitaly stage: gitaly
parallel: parallel:
matrix: matrix:
- DEBIAN: ['bullseye'] - DEBIAN: ['bullseye']

View file

@ -2,7 +2,7 @@
gitlab: gitlab:
extends: extends:
- .build_and_push - .build_and_push
stage: deploy-gitlab stage: gitlab
variables: variables:
LFS: '2.9' LFS: '2.9'
YARN: '1.22' YARN: '1.22'
@ -22,7 +22,7 @@ gitlab:
gitlab-assets: gitlab-assets:
extends: extends:
- .build_and_push - .build_and_push
stage: deploy-gitlab-assets stage: gitlab-assets
variables: variables:
LFS: '2.9' LFS: '2.9'
YARN: '1.22' YARN: '1.22'