mirror of
https://gitlab.gnome.org/GNOME/gimp.git
synced 2025-10-06 01:12:40 +02:00
gitlab-ci: Always use the Debian image of our Registry
Some jobs were using the Debian image from Docker Hub registry: - meson-health - clang-format - cppcheck - sources-debian - dev-docs - dist-appimage-weekly The reason was that we don't need a bigger image suited for builds ($CI_REGISTRY_IMAGE:build-debian-${DEB_VERSION}-${RUNNER}), but it relied entirely on luck. If we push too much commits in a day, it could surpass the Docker Hub limit. So, let's use our own image always.
This commit is contained in:
@@ -81,9 +81,10 @@ workflow:
|
||||
- 'scheduler_failure'
|
||||
needs: []
|
||||
# Default Docker image (keep variables: DEB_VERSION: consistent with devel-docs/os-support.txt)
|
||||
image: debian:${DEB_VERSION}
|
||||
image: $CI_REGISTRY_IMAGE:build-debian-${DEB_VERSION}-${RUNNER}
|
||||
variables:
|
||||
DEB_VERSION: "bookworm"
|
||||
RUNNER: "x86_64_v3"
|
||||
# Common cloning procedure
|
||||
GIT_DEPTH: "1"
|
||||
GIT_SUBMODULE_STRATEGY: none
|
||||
@@ -114,7 +115,6 @@ stages:
|
||||
- RUNNER: [aarch64, x86_64_v3]
|
||||
tags:
|
||||
- $RUNNER
|
||||
image: $CI_REGISTRY_IMAGE:build-debian-${DEB_VERSION}-${RUNNER}
|
||||
variables:
|
||||
CC: "clang"
|
||||
CXX: "clang++"
|
||||
|
Reference in New Issue
Block a user