From 7a2eacf62ce17fbf317acd630147965416616386 Mon Sep 17 00:00:00 2001 From: Dan Notestein Date: Sat, 3 Jan 2026 22:33:42 -0500 Subject: [PATCH 1/2] Fix typo in docstring to trigger python-scripts image rebuild --- scripts/python/remove-buildkit-cache.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/python/remove-buildkit-cache.py b/scripts/python/remove-buildkit-cache.py index 6213f77..80f4d21 100644 --- a/scripts/python/remove-buildkit-cache.py +++ b/scripts/python/remove-buildkit-cache.py @@ -4,7 +4,7 @@ This script deletes old BuildKit cache from GitLab registry. It's meant to be run by CI as it uses the job token. Requires CI_API_V4_URL, CI_PROJECT_ID and CI_JOB_TOKEN to be set. -Requires CACHE_REPOSITORIES to contains comma-separated list of cache repositories. +Requires CACHE_REPOSITORIES to contain comma-separated list of cache repositories. ''' import os import requests -- GitLab From a2506cb6a7745a233ab5c56e1ff39db4ab7f510e Mon Sep 17 00:00:00 2001 From: Dan Notestein Date: Sat, 3 Jan 2026 22:35:40 -0500 Subject: [PATCH 2/2] Fix build_image_remover_image to use latest docker images The python-scripts image build was failing because it tried to use docker-dind: which doesn't exist when only python scripts change. Override to use 'latest' since this build doesn't depend on fresh docker-dind/docker-builder images. --- .gitlab-ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 1f71c94..6c39d67 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -317,6 +317,9 @@ build_image_remover_image: stage: build variables: BUILD_TARGET: "python-scripts" + # Use latest docker images - python-scripts doesn't depend on fresh docker builds + DOCKER_DIND_TAG: "latest" + DOCKER_BUILDER_TAG: "latest" needs: - job: build_docker_dind_image optional: true -- GitLab