From 61f81bffb03357e7edafa0ba7a3735a988b0bdeb Mon Sep 17 00:00:00 2001 From: Andoni Duarte Pintado Date: Wed, 18 Feb 2026 12:35:45 +0100 Subject: [PATCH] Fix CI stable branch update job bug The update script clones a fresh copy each time, if more than one invocation is needed intermediate copies need to be removed. (cherry picked from commit 81b71d5aa6e3dfde3696eb360727bbdce2c947dc) --- .gitlab-ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 1ca2b57c72..572c498659 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2130,6 +2130,7 @@ update-stable-tag: - bind9-qa/releng/update_stable_tag.py --tag "$CI_COMMIT_TAG" # Work around https://github.com/readthedocs/readthedocs.org/issues/10838 - sleep 300 + - rm -rf ./bind9 # remove already cloned project - bind9-qa/releng/update_stable_tag.py --tag "$CI_COMMIT_TAG" rules: - *rule_tag_open_source