From 25e1610e2bebdf4e0efd944ed1313dbc5b431b3e Mon Sep 17 00:00:00 2001 From: AramJonghu Date: Tue, 30 Jun 2026 03:54:47 +0200 Subject: [PATCH] CI/CD: updated, should not stop the check now due to diagnostic demotion --- .gitea/workflows/cpp.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/cpp.yml b/.gitea/workflows/cpp.yml index c554b29..406a5e4 100644 --- a/.gitea/workflows/cpp.yml +++ b/.gitea/workflows/cpp.yml @@ -27,5 +27,6 @@ jobs: continue-on-error: true run: | set -o pipefail - run-clang-tidy -p build -j $(nproc) -header-filter="Plugins/.*" 2>&1 | \ - grep -v 'Suppressed\|non-user\|non-system\|unknown argument.*mno-direct\|Found compiler error' + run-clang-tidy -p build -j $(nproc) -header-filter="Plugins/.*" \ + -extra-arg=-Wno-unknown-argument 2>&1 | \ + grep -v 'Suppressed\|non-user\|non-system\|Found compiler error'