mirror of
https://ops.gitlab.net/gitlab-org/gitlab-build-images.git
synced 2025-12-10 02:22:57 +01:00
Move custom images to separate major component directories
This commit is contained in:
parent
0d1e680ecb
commit
8fff315864
4 changed files with 44 additions and 28 deletions
40
.gitlab/ci/e2e.images.yml
Normal file
40
.gitlab/ci/e2e.images.yml
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
# 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'
|
||||
RUBY: '2.7'
|
||||
BUNDLER: '2.3'
|
||||
CHROME: '99'
|
||||
|
||||
# Image used for running full e2e test suite
|
||||
.e2e-full:
|
||||
variables:
|
||||
LFS: '2.9'
|
||||
GCLOUD: '383'
|
||||
KUBECTL: '1.23'
|
||||
DOCKER: '20.10.14'
|
||||
|
||||
e2e-base test:
|
||||
extends:
|
||||
- .e2e-base
|
||||
- .test_custom
|
||||
e2e-base push:
|
||||
extends:
|
||||
- .e2e-base
|
||||
- .build_and_deploy_custom
|
||||
needs: ["e2e-base test"]
|
||||
|
||||
e2e-full test:
|
||||
extends:
|
||||
- .e2e-base
|
||||
- .e2e-full
|
||||
- .test_custom
|
||||
e2e-full push:
|
||||
extends:
|
||||
- .e2e-base
|
||||
- .e2e-full
|
||||
- .build_and_deploy_custom
|
||||
needs: ["e2e-full test"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue