gitlab-build-images/.gitlab/ci/gitaly.images.yml
Toon Claes 29b7eec6a1 gitaly: Add Ruby 3 to UBI images
Add a UBI image that uses Ruby 3.0.
2023-02-06 08:17:12 +01:00

27 lines
637 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.0']
GIT: ['2.36']
- OS: ['ubi:8.6']
RUBY: ['2.7', '3.0']
GOLANG: ['1.18']
RUST: ['1.65.0']
GIT: ['2.36']