gitlab-build-images/.gitlab/ci/gitaly.images.yml
Rémy Coutable 57fe03c0e4
Publish images with full Ruby version
Signed-off-by: Rémy Coutable <remy@rymai.me>
2024-05-28 09:21:45 +02:00

27 lines
687 B
YAML

# Used by Gitaly: https://gitlab.com/gitlab-org/gitaly/blob/master/.gitlab-ci.yml
.gitaly-base:
extends:
- .build_dynamic_image
stage: gitaly
rules:
- !reference [.build_dynamic_image, rules]
- changes:
- "scripts/lib/custom-docker-build"
- "scripts/install-essentials"
- "scripts/install-git"
- "scripts/install-golang"
- ".gitlab/ci/gitaly.images.yml"
gitaly:
extends:
- .gitaly-base
parallel:
matrix:
- OS: ['debian:bookworm']
GOLANG: ['1.21', '1.22']
RUST: ['1.73']
GIT: ['2.36']
- OS: ['ubi:8.6']
GOLANG: ['1.21', '1.22']
RUST: ['1.73']
GIT: ['2.36']