From 823d5baf2263f9a1a43ce5bf49714269cbefd495 Mon Sep 17 00:00:00 2001 From: shamao01 Date: Wed, 28 Jan 2026 15:10:40 +0200 Subject: [PATCH] Fix badword token from clang-tidy config MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Replace the old “all checks minus specific modules” pattern with an explicit allow-list of clang-tidy modules, preserving the intended set of enabled checks while avoiding the banned word that triggered the policy error Signed-off-by: shamao01 Change-Id: I6f392075b42be0cd278bdd4aff6ee2064d8c52e0 --- .gitlab-ci.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 1c50e68..0ab18b0 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -96,7 +96,14 @@ clang_tidy: - set -o pipefail - | run-clang-tidy -p build -j "$(nproc)" -quiet -header-filter="$(pwd)/.*" \ - -checks='*, + -checks='clang-analyzer-*, + bugprone-*, + cert-*, + cppcoreguidelines-*, + hicpp-*, + misc-*, + performance-*, + readability-*, -bugprone-easily-swappable-parameters, -bugprone-exception-escape, -bugprone-implicit-widening-of-multiplication-result, @@ -187,7 +194,6 @@ clang_tidy: -altera-*, -boost-*, -fuchsia-*, - -google-*, -llvm-*, -llvmlibc-*, -modernize-*' \