gitlab-build-images/.gitlab/ci/gitaly.images.yml
Stan Hu 2678e26b22
Make GitLab and Gitaly builds dependent on install-essentials
This is the base script that is used to install dependencies,
so we should generate images if this is changed.
2024-02-12 18:07:22 -08:00

28 lines
708 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-essentials"
- "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.20', '1.21']
RUST: ['1.73']
GIT: ['2.36']
- OS: ['ubi:8.6']
GOLANG: ['1.20', '1.21']
RUST: ['1.73']
GIT: ['2.36']