mirror of
https://ops.gitlab.net/gitlab-org/gitlab-build-images.git
synced 2025-12-09 18:12:55 +01:00
36 lines
633 B
YAML
36 lines
633 B
YAML
# Used by gitlab e2e tests and other qa related tasks
|
|
|
|
# Base image with just ruby and bundler
|
|
e2e:
|
|
extends:
|
|
- .build_and_push
|
|
variables:
|
|
OS: "debian:bullseye"
|
|
BUNDLER: '2.3'
|
|
parallel:
|
|
matrix:
|
|
- RUBY: [ '2.7', '3.0' ]
|
|
|
|
# Image with ruby, bundler and docker
|
|
e2e-docker:
|
|
extends:
|
|
- e2e
|
|
variables:
|
|
DOCKER: '20.10.14'
|
|
|
|
# Image with additional chrome installed
|
|
e2e-chrome:
|
|
extends:
|
|
- e2e-docker
|
|
variables:
|
|
CHROME: '101'
|
|
|
|
# Image used for running full e2e test suite
|
|
e2e-full:
|
|
extends:
|
|
- e2e-chrome
|
|
variables:
|
|
LFS: '2.9'
|
|
GIT: '2.33'
|
|
GCLOUD: '383'
|
|
KUBECTL: '1.23'
|