mirror of
https://ops.gitlab.net/gitlab-org/gitlab-build-images.git
synced 2025-12-08 17:42:56 +01:00
27 lines
685 B
YAML
27 lines
685 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"
|
|
- "scripts/install-git"
|
|
- "scripts/install-golang"
|
|
- ".gitlab/ci/gitaly.images.yml"
|
|
|
|
gitaly:
|
|
needs: []
|
|
extends:
|
|
- .gitaly
|
|
stage: gitaly
|
|
parallel:
|
|
matrix:
|
|
- OS: ['debian:bullseye', 'debian:bookworm']
|
|
GOLANG: ['1.19', '1.20', '1.21']
|
|
RUST: ['1.73']
|
|
GIT: ['2.36']
|
|
- OS: ['ubi:8.6']
|
|
GOLANG: ['1.19', '1.20', '1.21']
|
|
RUST: ['1.73']
|
|
GIT: ['2.36']
|