From: Peter Maydell Date: Tue, 16 Sep 2025 16:30:30 +0000 (+0100) Subject: .gitlab-ci.d/buildtest.yml: Unset CI_COMMIT_DESCRIPTION for htags X-Git-Tag: v10.0.5~24 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f37412622d5909fb78c1fe297d27c3bde41f4e56;p=thirdparty%2Fqemu.git .gitlab-ci.d/buildtest.yml: Unset CI_COMMIT_DESCRIPTION for htags In commit 52a21689cd829 we added a workaround for a bug in older versions of htags where they fail with a weird error message if the environment is too large. However, we missed one variable which gitlab CI can set to the body of the commit message: CI_COMMIT_DESCRIPTION. Add this to the variables we unset when running htags, so that the 'pages' job doesn't fail if the most recent commit happens to have a very large commit message. Cc: qemu-stable@nongnu.org Fixes: 52a21689cd8 (".gitlab-ci.d/buildtest.yml: Work around htags bug when environment is large") Signed-off-by: Peter Maydell Reviewed-by: Alex Bennée Reviewed-by: Daniel P. Berrangé Message-ID: <20250916163030.1467893-1-peter.maydell@linaro.org> Signed-off-by: Thomas Huth (cherry picked from commit fd34f56fe886250bdd64f9c222c1cb4c07a594ad) Signed-off-by: Michael Tokarev --- diff --git a/.gitlab-ci.d/buildtest.yml b/.gitlab-ci.d/buildtest.yml index 00f4bfcd9f3..e22d407dbfa 100644 --- a/.gitlab-ci.d/buildtest.yml +++ b/.gitlab-ci.d/buildtest.yml @@ -751,7 +751,7 @@ pages: - make gtags # We unset variables to work around a bug in some htags versions # which causes it to fail when the environment is large - - CI_COMMIT_MESSAGE= CI_COMMIT_TAG_MESSAGE= htags + - CI_COMMIT_MESSAGE= CI_COMMIT_TAG_MESSAGE= CI_COMMIT_DESCRIPTION= htags -anT --tree-view=filetree -m qemu_init -t "Welcome to the QEMU sourcecode" - mv HTML public/src