mirror of
https://ops.gitlab.net/gitlab-org/gitlab-build-images.git
synced 2025-12-09 18:12:55 +01:00
We only build Gitaly's UBI images with Go 1.18, but Gitaly is about to start supporting Go 1.19. Build images for both versions so that Gitaly can upgrade their CI jobs to test with both versions.
27 lines
641 B
YAML
27 lines
641 B
YAML
# Used by Gitaly: https://gitlab.com/gitlab-org/gitaly/blob/master/.gitlab-ci.yml
|
|
.gitaly:
|
|
extends:
|
|
- .build_dynamic_image
|
|
rules:
|
|
- !reference [.build_dynamic_image, rules]
|
|
- changes:
|
|
- "scripts/lib/custom-docker-build"
|
|
- ".gitlab/ci/gitaly.images.yml"
|
|
|
|
gitaly:
|
|
needs: []
|
|
extends:
|
|
- .gitaly
|
|
stage: gitaly
|
|
parallel:
|
|
matrix:
|
|
- OS: ['debian:bullseye']
|
|
RUBY: ['2.7', '3.0']
|
|
GOLANG: ['1.18', '1.19']
|
|
RUST: ['1.65']
|
|
GIT: ['2.36']
|
|
- OS: ['ubi:8.6']
|
|
RUBY: ['2.7', '3.0']
|
|
GOLANG: ['1.18', '1.19']
|
|
RUST: ['1.65']
|
|
GIT: ['2.36']
|