gitlab-build-images/.gitlab/ci/gitaly.images.yml
Patrick Steinhardt d5dee4e6e4
gitaly: Build UBI images with Go 1.19
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.
2023-02-08 13:16:39 -08:00

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