Build GitLab image with buster as well

Signed-off-by: Rémy Coutable <remy@rymai.me>
This commit is contained in:
Rémy Coutable 2022-03-22 16:08:14 +01:00
parent 5e285d7ea8
commit 3fc2d174e7
No known key found for this signature in database
GPG key ID: 4C514D15D07186F1
2 changed files with 6 additions and 3 deletions

View file

@ -9,7 +9,7 @@
PGBOUNCER: ['1.14', '']
POSTGRESQL: ['11', '12'] # We only use the postgresql-client
gitaly:test:
gitaly test:
needs: []
extends:
- .gitaly-matrix
@ -20,3 +20,4 @@ gitaly push:
- .gitaly-matrix
- .build_and_deploy_custom
stage: deploy-gitaly
needs: ["gitaly test"]

View file

@ -6,7 +6,7 @@
GRAPHICSMAGICK: '1.3.36'
parallel:
matrix:
- DEBIAN: ['bullseye']
- DEBIAN: ['buster', 'bullseye']
RUBY: ['2.7.patched', '3.0.patched']
GIT: ['2.33']
POSTGRESQL: ['11', '12', '13']
@ -24,6 +24,7 @@ gitlab push:
- .gitlab-matrix
- .build_and_deploy_custom
stage: deploy-gitlab
needs: ["gitlab test"]
# Used by GitLab's compile-production-assets and compile-test-assets jobs
.gitlab-assets-matrix:
@ -33,7 +34,7 @@ gitlab push:
GRAPHICSMAGICK: '1.3.36'
parallel:
matrix:
- DEBIAN: ['bullseye']
- DEBIAN: ['buster', 'bullseye']
RUBY: ['2.7', '3.0']
GIT: ['2.31', '2.33']
NODE: ['16.14']
@ -48,3 +49,4 @@ gitlab-assets push:
- .gitlab-assets-matrix
- .build_and_deploy_custom
stage: deploy-gitlab-assets
needs: ["gitlab-assets test"]