From ea3fb8a8b1e3c89913c4b4fc1183f9a8ea5df015 Mon Sep 17 00:00:00 2001 From: Muhammad Usama Anjum Date: Tue, 5 Nov 2024 17:20:51 +0500 Subject: [PATCH] config: pipeline: Update CONFIG_FRAME_WARN for arm CONFIG_FRAME_WARN is set to 1024 by default for arm. The allowed value for this is 0 to 8192. Let's increase it to 2048 to avoid getting the warning when stack size is more than default 1024. As all warnings are being treated as errors, our allmodconfig build fails on arm. Close: https://github.com/kernelci/kernelci-project/issues/482 Signed-off-by: Muhammad Usama Anjum --- config/pipeline.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config/pipeline.yaml b/config/pipeline.yaml index 61062932d..0482e7fb3 100644 --- a/config/pipeline.yaml +++ b/config/pipeline.yaml @@ -301,6 +301,8 @@ jobs: defconfig: - defconfig - allmodconfig + fragments: + - 'CONFIG_FRAME_WARN=2048' rules: tree: - 'mainline'