gitlab-build-images/.gitlab/ci/e2e.images.yml
Andrejs Cunskis 171e9fc93f
Add gdk base image
Remove graphicsmagic

Add ruby

Add git and git-lfs

Bump rubygems version
2023-02-20 13:28:09 +09:00

64 lines
1.2 KiB
YAML

# Used by gitlab e2e tests and other qa related tasks
.e2e:
extends:
- .build_dynamic_image
rules:
- !reference [.build_dynamic_image, rules]
- changes:
- "scripts/lib/custom-docker-build"
- ".gitlab/ci/e2e.images.yml"
# Base image with just ruby and bundler
e2e:
extends:
- .e2e
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
parallel:
matrix:
- RUBY: ['2.7', '3.0']
CHROME: ['106', '109']
# Image used for running full e2e test suite
e2e-full:
extends:
- e2e-chrome
variables:
GIT: '2.36'
LFS: '2.9'
GCLOUD: '383'
KUBECTL: '1.23'
ARCH: linux/amd64,linux/arm64
# Used by e2e tests running against gdk
e2e-gdk:
extends:
- .e2e
variables:
OS: 'debian:bullseye-slim'
RUBY: '3.0'
RUBYGEMS: '3.4'
NODE: '16.14'
YARN: '1.22'
POSTGRESQL: '12'
GOLANG: '1.19'
RUST: '1.65'
GIT: '2.36'
LFS: '2.9'
ARCH: linux/amd64,linux/arm64