From 1cdcecae68ae8346a1813dafde18e6d2d26a39cf Mon Sep 17 00:00:00 2001 From: AramJonghu Date: Tue, 30 Jun 2026 04:27:44 +0200 Subject: [PATCH] CI/CD: revert --- .gitea/workflows/cpp.yml | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/.gitea/workflows/cpp.yml b/.gitea/workflows/cpp.yml index e8e58c3..ffe41a3 100644 --- a/.gitea/workflows/cpp.yml +++ b/.gitea/workflows/cpp.yml @@ -16,17 +16,14 @@ jobs: fetch-depth: 0 - name: Configure - run: cmake -B build -G Ninja -DENABLE_MODULES=plugin \ - -DCMAKE_BUILD_TYPE=Release \ - -DCMAKE_CXX_FLAGS="-I/usr/include/qt6/QtCanvasPainter" + run: cmake -B build -G Ninja -DENABLE_MODULES=plugin -DCMAKE_BUILD_TYPE=Release - name: Build run: ninja -C build - name: clang-tidy + continue-on-error: true run: | - sed -i 's/-mno-direct-extern-access //g' build/compile_commands.json set -o pipefail - run-clang-tidy -p build -j $(nproc) -header-filter="Plugins/.*" \ - -warnings-as-errors='*' 2>&1 | \ - grep -v 'Suppressed\|non-user\|non-system\|unknown argument.*mno-direct\|Found compiler error\|warnings generated\.\|^Use -header-filter' + run-clang-tidy -p build -j $(nproc) -header-filter="Plugins/.*" 2>&1 | \ + grep -v 'Suppressed\|non-user\|non-system\|unknown argument.*mno-direct'