qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] .gitlab-ci.d/buildtest.yml: Work around htags bug when environment is large
@ 2024-01-11 12:55 Peter Maydell
  2024-01-11 14:02 ` Philippe Mathieu-Daudé
  0 siblings, 1 reply; 2+ messages in thread
From: Peter Maydell @ 2024-01-11 12:55 UTC (permalink / raw)
  To: qemu-devel
  Cc: qemu-stable, Alex Bennée, Philippe Mathieu-Daudé,
	Thomas Huth, Wainer dos Santos Moschetta, Beraldo Leal

Sometimes the CI "pages" job fails with a message like this from
htags:

$ htags -anT --tree-view=filetree -m qemu_init -t "Welcome to the QEMU sourcecode"
htags: Negative exec line limit = -371

This is due to a bug in hflags where if the environment is too large it
falls over:
https://lists.gnu.org/archive/html/bug-global/2024-01/msg00000.html

This happens to us because GitLab CI puts the commit message of the
commit under test into the CI_COMMIT_MESSAGE and/or CI_COMMIT_TAG_MESSAGE
environment variables, so the job will fail if the commit happens to
have a verbose commit message.

Work around the htags bug by unsetting these variables while running
htags.

Cc: qemu-stable@nongnu.org
Resolves: https://gitlab.com/qemu-project/qemu/-/issues/2080
---
Cc'ing stable purely because it's probably useful to avoid flaky
CI jobs when testing stable branches too.

 .gitlab-ci.d/buildtest.yml | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/.gitlab-ci.d/buildtest.yml b/.gitlab-ci.d/buildtest.yml
index 91663946de4..0a01746cea9 100644
--- a/.gitlab-ci.d/buildtest.yml
+++ b/.gitlab-ci.d/buildtest.yml
@@ -647,7 +647,10 @@ pages:
     - mkdir -p public
     # HTML-ised source tree
     - make gtags
-    - htags -anT --tree-view=filetree -m qemu_init
+    # 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
+        -anT --tree-view=filetree -m qemu_init
         -t "Welcome to the QEMU sourcecode"
     - mv HTML public/src
     # Project documentation
-- 
2.34.1



^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] .gitlab-ci.d/buildtest.yml: Work around htags bug when environment is large
  2024-01-11 12:55 [PATCH] .gitlab-ci.d/buildtest.yml: Work around htags bug when environment is large Peter Maydell
@ 2024-01-11 14:02 ` Philippe Mathieu-Daudé
  0 siblings, 0 replies; 2+ messages in thread
From: Philippe Mathieu-Daudé @ 2024-01-11 14:02 UTC (permalink / raw)
  To: Peter Maydell, qemu-devel
  Cc: qemu-stable, Alex Bennée, Thomas Huth,
	Wainer dos Santos Moschetta, Beraldo Leal

On 11/1/24 13:55, Peter Maydell wrote:
> Sometimes the CI "pages" job fails with a message like this from
> htags:
> 
> $ htags -anT --tree-view=filetree -m qemu_init -t "Welcome to the QEMU sourcecode"
> htags: Negative exec line limit = -371
> 
> This is due to a bug in hflags where if the environment is too large it
> falls over:
> https://lists.gnu.org/archive/html/bug-global/2024-01/msg00000.html
> 
> This happens to us because GitLab CI puts the commit message of the
> commit under test into the CI_COMMIT_MESSAGE and/or CI_COMMIT_TAG_MESSAGE
> environment variables, so the job will fail if the commit happens to
> have a verbose commit message.
> 
> Work around the htags bug by unsetting these variables while running
> htags.
> 
> Cc: qemu-stable@nongnu.org
> Resolves: https://gitlab.com/qemu-project/qemu/-/issues/2080
> ---
> Cc'ing stable purely because it's probably useful to avoid flaky
> CI jobs when testing stable branches too.
> 
>   .gitlab-ci.d/buildtest.yml | 5 ++++-
>   1 file changed, 4 insertions(+), 1 deletion(-)

Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>



^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2024-01-11 14:03 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-11 12:55 [PATCH] .gitlab-ci.d/buildtest.yml: Work around htags bug when environment is large Peter Maydell
2024-01-11 14:02 ` Philippe Mathieu-Daudé

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).