From cb4316d07a112fd7844c459dd298bd88655daff0 Mon Sep 17 00:00:00 2001 From: Bruno Lopes Date: Sun, 31 Aug 2025 13:28:53 -0300 Subject: [PATCH] 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. --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index daffeff410..4f8b7cffdc 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -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++"