mirror of
https://ops.gitlab.net/gitlab-org/gitlab-build-images.git
synced 2025-12-09 10:02:56 +01:00
39 lines
941 B
YAML
39 lines
941 B
YAML
.customers-base:
|
|
extends:
|
|
- .build_dynamic_image
|
|
stage: customers
|
|
rules:
|
|
- !reference [.build_dynamic_image, rules]
|
|
- changes:
|
|
- "scripts/lib/custom-docker-build"
|
|
- ".gitlab/ci/customers.images.yml"
|
|
|
|
# Used by customers-gitlab-com rspec job: https://gitlab.com/gitlab-org/customers-gitlab-com/-/blob/staging/.gitlab-ci.yml
|
|
customers:
|
|
extends:
|
|
- .customers-base
|
|
variables:
|
|
RUBY: '3.2.4'
|
|
LFS: '2.9'
|
|
CHROME: '119'
|
|
NODE: '20.12'
|
|
YARN: '1.22'
|
|
POSTGRESQL: '12'
|
|
GIT: '2.36'
|
|
parallel:
|
|
matrix:
|
|
- DOCKER: ['24.0.7', '']
|
|
|
|
# Used by customers-gitlab-com qa e2e test: https://gitlab.com/gitlab-org/customers-gitlab-com/-/blob/staging/.gitlab/ci/e2e.gitlab-ci.yml
|
|
customers-qa-assets:
|
|
extends:
|
|
- .customers-base
|
|
variables:
|
|
RUBY: '3.2.4'
|
|
CHROME: '119'
|
|
NODE: '20.12'
|
|
YARN: '1.22'
|
|
GIT: '2.36'
|
|
parallel:
|
|
matrix:
|
|
- DOCKER: ['24.0.7', '']
|