Experiment: automatically push built images

This commit is contained in:
Andrejs Cunskis 2022-05-11 12:56:08 +00:00 committed by Rémy Coutable
parent 5a79c03924
commit 6bfe260f3b
15 changed files with 227 additions and 363 deletions

View file

@ -1,5 +1,7 @@
# Used by customers-gitlab-com rspec job: https://gitlab.com/gitlab-org/customers-gitlab-com/-/blob/staging/.gitlab-ci.yml
.customers-matrix:
customers:
extends:
- .build_and_push
variables:
LFS: '2.9'
CHROME: '89'
@ -12,19 +14,10 @@
GIT: ['2.33']
DOCKER: ['19.03.1', '']
customers test:
extends:
- .customers-matrix
- .test_custom
customers push:
extends:
- .customers-matrix
- .build_and_deploy_custom
needs: ["customers test"]
# 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-matrix:
customers-qa-assets:
extends:
- .build_and_push
variables:
CHROME: '89'
NODE: '16.14'
@ -34,14 +27,3 @@ customers push:
matrix:
- RUBY: ['2.7.6']
GIT: ['2.33']
customers-qa-assets test:
extends:
- .customers-qa-matrix
- .test_custom
customers-qa-assets push:
extends:
- .customers-qa-matrix
- .build_and_deploy_custom
needs: ["customers-qa-assets test"]