mirror of
https://ops.gitlab.net/gitlab-org/gitlab-build-images.git
synced 2025-12-09 10:02:56 +01:00
bullseye is the latest stable, and this is what we will be using for Cloud Native GitLab going forward so we should test with this. Since an upgrade of the operating system may break pre-compiled C extensions, we now introduce a DEBIAN environment flag that defaults to the legacy buster install but allows us to roll out a bullseye image with `debian-bullseye` as the image name prefix.
47 lines
984 B
YAML
47 lines
984 B
YAML
# Used by GitLab: https://gitlab.com/gitlab-org/gitlab/blob/master/.gitlab-ci.yml
|
|
.gitlab-matrix:
|
|
variables:
|
|
LFS: '2.9'
|
|
CHROME: '89'
|
|
NODE: '14.15'
|
|
YARN: '1.22'
|
|
GRAPHICSMAGICK: '1.3.36'
|
|
parallel:
|
|
matrix:
|
|
- DEBIAN: ['bullseye']
|
|
RUBY: ['2.7.patched', '3.0.patched']
|
|
GIT: ['2.33']
|
|
POSTGRESQL: ['11', '12', '13']
|
|
GOLANG: ['1.16', '1.17']
|
|
|
|
gitlab test:
|
|
extends:
|
|
- .gitlab-matrix
|
|
- .test_custom
|
|
|
|
gitlab push:
|
|
extends:
|
|
- .gitlab-matrix
|
|
- .build_and_deploy_custom
|
|
|
|
# Used by GitLab's compile-production-assets and compile-test-assets jobs
|
|
.gitlab-assets-matrix:
|
|
variables:
|
|
LFS: '2.9'
|
|
NODE: '14.15'
|
|
YARN: '1.22'
|
|
GRAPHICSMAGICK: '1.3.36'
|
|
parallel:
|
|
matrix:
|
|
- RUBY: ['2.7', '3.0']
|
|
GIT: ['2.31', '2.33']
|
|
|
|
gitlab-assets test:
|
|
extends:
|
|
- .gitlab-assets-matrix
|
|
- .test_custom
|
|
|
|
gitlab-assets push:
|
|
extends:
|
|
- .gitlab-assets-matrix
|
|
- .build_and_deploy_custom
|