diff mbox series

[2/9] CI: ignore buildpaths QA check in clang builds

Message ID 20220719201353.1467716-2-ross.burton@arm.com
State New
Headers show
Series [1/9] CI: use apt-get instead of apt wrapper | expand

Commit Message

Ross Burton July 19, 2022, 8:13 p.m. UTC
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 <ross.burton@arm.com>
---
 ci/clang.yml | 3 +++
 1 file changed, 3 insertions(+)
diff mbox series

Patch

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"