mirror of
https://ops.gitlab.net/gitlab-org/gitlab-build-images.git
synced 2025-12-09 18:12:55 +01:00
Introduce a report-built-images job to gather the list of all built images
This commit is contained in:
parent
439201893a
commit
2ddf1ada73
4 changed files with 33 additions and 17 deletions
|
|
@ -18,8 +18,6 @@ default:
|
|||
image: ${BASE_BUILD_REGISTRY_IMAGE}/debian-bullseye-slim:docker-${DOCKER_VERSION}
|
||||
services:
|
||||
- docker:${DOCKER_VERSION}-dind
|
||||
before_script:
|
||||
- docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" "$CI_REGISTRY"
|
||||
tags:
|
||||
- gitlab-org-docker
|
||||
|
||||
|
|
@ -37,6 +35,7 @@ stages:
|
|||
- gitlab-cng
|
||||
- gitlab-kas
|
||||
- gitlab-workhorse
|
||||
- report
|
||||
|
||||
variables:
|
||||
DOCKER_HOST: tcp://docker:2375
|
||||
|
|
@ -44,7 +43,16 @@ variables:
|
|||
DOCKER_VERSION: "24.0.5"
|
||||
|
||||
dont-interrupt-me:
|
||||
extends: .dont-interrupt-me
|
||||
stage: .pre
|
||||
interruptible: false
|
||||
script:
|
||||
- echo "This jobs makes sure this pipeline won't be interrupted! See https://docs.gitlab.com/ee/ci/yaml/#interruptible."
|
||||
rules:
|
||||
- if: $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH
|
||||
allow_failure: true
|
||||
- if: $CI_MERGE_REQUEST_IID
|
||||
when: manual
|
||||
allow_failure: true
|
||||
|
||||
cache-chrome-chromium:
|
||||
extends: .cache-google-chrome
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue