gitlab-build-images/.gitlab/ci/gitlab.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

81 lines
1.9 KiB
YAML

# Used by GitLab: https://gitlab.com/gitlab-org/gitlab/blob/master/.gitlab-ci.yml
.gitlab-base:
extends:
- .build_dynamic_image
stage: gitlab
rules:
- !reference [.build_dynamic_image, rules]
- changes:
- "scripts/install-*"
- "scripts/lib/custom-docker-build"
- ".gitlab/ci/gitlab.images.yml"
- "patches/ruby/**/*"
gitlab:
extends:
- .gitlab-base
variables:
RUBYGEMS: '3.4'
LFS: '2.9'
YARN: '1.22'
GRAPHICSMAGICK: '1.3.36'
ARCH: linux/amd64,linux/arm64
GIT: '2.36'
NODE: '20.12'
RUST: '1.73'
parallel:
matrix:
- OS: ['debian:bookworm', 'debian:bookworm-slim']
RUBY: ['3.0.6', '3.1.5', '3.2.4']
POSTGRESQL: ['13', '14', '15', '16']
GOLANG: ['1.21', '1.22']
CHROME: ['123']
# Used by GitLab's jobs that work with ruby gems
gitlab-slim-ruby:
extends:
- .gitlab-base
parallel:
matrix:
- RUBY: ['3.0.6', '3.1.5', '3.2.4']
OS: ['debian:bookworm-slim']
# Used by GitLab's compile-production-assets and compile-test-assets jobs
gitlab-assets:
extends:
- .gitlab-base
stage: gitlab-assets
variables:
RUBYGEMS: '3.4'
LFS: '2.9'
NODE: '20.12'
YARN: '1.22'
GRAPHICSMAGICK: '1.3.36'
ARCH: amd64,arm64
parallel:
matrix:
- OS: ['debian:bookworm']
RUBY: ['3.0.6', '3.1.5', '3.2.4']
GIT: ['2.33']
# Used by GitLab's workhorse tests
gitlab-workhorse:
needs: []
extends:
- .gitlab-base
stage: gitlab-workhorse
variables:
EXIFTOOL: '12.60'
RUBYGEMS: '3.4'
parallel:
matrix:
- OS: ['debian:bookworm']
RUBY: ['3.0.6', '3.1.5', '3.2.4']
GOLANG: ['1.21', '1.22']
RUST: ['1.73']
GIT: ['2.36']
- OS: ['ubi:8.6']
RUBY: ['3.0.6', '3.1.5', '3.2.4']
GOLANG: ['1.21', '1.22']
RUST: ['1.73']
GIT: ['2.36']