mirror of
https://ops.gitlab.net/gitlab-org/gitlab-build-images.git
synced 2025-12-09 18:12:55 +01:00
Add e2e images for all qa usecases
This commit is contained in:
parent
47097cdd06
commit
41e842d004
1 changed files with 24 additions and 12 deletions
|
|
@ -1,24 +1,36 @@
|
|||
# Used by gitlab e2e tests and other qa related tasks
|
||||
|
||||
# Base image used by QA framework unit tests and other jobs not requiring full toolset
|
||||
e2e-base:
|
||||
variables:
|
||||
DEBIAN: bullseye
|
||||
GIT: '2.33'
|
||||
BUNDLER: '2.3'
|
||||
CHROME: '101'
|
||||
# Base image with just ruby and bundler
|
||||
e2e:
|
||||
extends:
|
||||
- .build_and_push
|
||||
variables:
|
||||
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:
|
||||
variables:
|
||||
LFS: '2.9'
|
||||
GCLOUD: '383'
|
||||
KUBECTL: '1.23'
|
||||
DOCKER: '20.10.14'
|
||||
extends:
|
||||
- e2e-base
|
||||
variables:
|
||||
LFS: '2.9'
|
||||
GIT: '2.33'
|
||||
GCLOUD: '383'
|
||||
KUBECTL: '1.23'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue