From 9ee63ef5407d9678daae210fc1244deaaedc8f73 Mon Sep 17 00:00:00 2001 From: Roger Pau Monne Date: Tue, 14 Jan 2025 15:10:14 +0100 Subject: [PATCH] automation/gitlab: disable coverage from clang randconfig MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit If randconfig enables coverage support the build times out due to GNU LD taking too long. For the time being prevent coverage from being enabled in clang randconfig job. Signed-off-by: Roger Pau Monné Acked-by: Andrew Cooper Acked-by: Stefano Stabellini Release-Acked-by: Oleksii Kurochko --- automation/gitlab-ci/build.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/automation/gitlab-ci/build.yaml b/automation/gitlab-ci/build.yaml index cb84f379b7..bc4a8a5ad2 100644 --- a/automation/gitlab-ci/build.yaml +++ b/automation/gitlab-ci/build.yaml @@ -556,6 +556,8 @@ debian-12-x86_64-clang-randconfig: variables: CONTAINER: debian:12-x86_64 RANDCONFIG: y + EXTRA_FIXED_RANDCONFIG: | + CONFIG_COVERAGE=n # Disable coverage otherwise build times out. debian-12-x86_64-gcc: extends: .gcc-x86-64-build -- 2.39.5