ci: scan-build, ignore meson-built files

Like .gir introspection files that are generated are currently failing
This commit is contained in:
Marco Trevisan (Treviño)
2025-02-12 20:49:52 +01:00
committed by Marco Trevisan
parent 28b9ab7e37
commit 8e22b2e22e

View File

@@ -1,4 +1,4 @@
#!/bin/sh
# This wrapper just disables the malloc checker
exec /usr/bin/scan-build --status-bugs -disable-checker unix.Malloc "$@"
exec /usr/bin/scan-build --status-bugs -disable-checker unix.Malloc --exclude "_build/meson-private" "$@"