debian-mirror-gitlab/.gitlab/ci/build-images.gitlab-ci.yml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

40 lines
1.6 KiB
YAML
Raw Normal View History

2021-09-30 23:02:18 +05:30
.base-image-build:
extends: .use-kaniko
2022-08-13 15:12:31 +05:30
variables:
2023-01-13 00:05:48 +05:30
GIT_LFS_SKIP_SMUDGE: 1 # disable pulling objects from lfs
retry: 2
.base-image-build-buildx:
extends: .use-buildx
variables:
GIT_LFS_SKIP_SMUDGE: 1 # disable pulling objects from lfs
2021-09-30 23:02:18 +05:30
retry: 2
# This image is used by:
# - The `review-qa-*` jobs
2022-10-11 01:57:18 +05:30
# - The `e2e:package-and-test` child pipeline test stage jobs
2021-04-29 21:17:54 +05:30
# See https://docs.gitlab.com/ee/development/testing_guide/end_to_end/index.html#testing-code-in-merge-requests for more details.
2020-07-28 23:09:34 +05:30
build-qa-image:
extends:
2023-01-13 00:05:48 +05:30
- .base-image-build-buildx
2020-07-28 23:09:34 +05:30
- .build-images:rules:build-qa-image
stage: build-images
needs: []
script:
2023-01-13 00:05:48 +05:30
- run_timed_command "scripts/build_qa_image"
2020-07-28 23:09:34 +05:30
# This image is used by:
# - The `CNG` pipelines (via the `review-build-cng` job): https://gitlab.com/gitlab-org/build/CNG/-/blob/cfc67136d711e1c8c409bf8e57427a644393da2f/.gitlab-ci.yml#L335
2022-10-11 01:57:18 +05:30
# - The `omnibus-gitlab` pipelines (via the `e2e:package-and-test` job): https://gitlab.com/gitlab-org/omnibus-gitlab/-/blob/dfd1ad475868fc84e91ab7b5706aa03e46dc3a86/.gitlab-ci.yml#L130
2020-07-28 23:09:34 +05:30
build-assets-image:
extends:
2021-09-30 23:02:18 +05:30
- .base-image-build
2020-07-28 23:09:34 +05:30
- .build-images:rules:build-assets-image
stage: build-images
needs: ["compile-production-assets"]
script:
# TODO: Change the image tag to be the MD5 of assets files and skip image building if the image exists
# We'll also need to pass GITLAB_ASSETS_TAG to the trigerred omnibus-gitlab pipeline similarly to how we do it for trigerred CNG pipelines
# https://gitlab.com/gitlab-org/gitlab/issues/208389
- run_timed_command "scripts/build_assets_image"