From 53795134de85b243a5e1bb8b74e05b51ee04058d Mon Sep 17 00:00:00 2001 From: Ross Burton Date: Tue, 19 Jul 2022 21:13:46 +0100 Subject: [PATCH] CI: ignore buildpaths QA check in clang builds If clang builds assembler code the debug symbols contain unmapped build paths which trigger the buildpaths QA check. This bug has been filed with upstream: https://github.com/llvm/llvm-project/issues/56609 Until it is fixed, exclude buildpaths from clang builds so that CI can pass. Signed-off-by: Ross Burton Signed-off-by: Jon Mason --- ci/clang.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ci/clang.yml b/ci/clang.yml index a2063f19..99ca8d43 100644 --- a/ci/clang.yml +++ b/ci/clang.yml @@ -8,3 +8,6 @@ repos: local_conf_header: clang: | TOOLCHAIN = "clang" + # Clang causes more binaries to have buildpaths in the debug symbols + # https://github.com/llvm/llvm-project/issues/56609 + WARN_QA:remove = "buildpaths"