CI/CD: updated cpp to reduce false flags, focus on dev tidy check
Lint & Format (JS/TS) / lint-format (pull_request) Successful in 12s
Python / lint-format (pull_request) Successful in 30s
Python / test (pull_request) Successful in 42s
Lint & Format (Rust) / lint-format (pull_request) Successful in 1m37s
C++ / build (pull_request) Successful in 2m23s

This commit is contained in:
2026-06-30 03:44:35 +02:00
parent 87c9f85ac7
commit 49a65becff
+4 -2
View File
@@ -16,7 +16,9 @@ jobs:
fetch-depth: 0
- name: Configure
run: cmake -B build -G Ninja -DENABLE_MODULES=plugin -DCMAKE_BUILD_TYPE=Release
run: cmake -B build -G Ninja -DENABLE_MODULES=plugin \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_CXX_FLAGS="-I/usr/include/qt6/QtCanvasPainter"
- name: Build
run: ninja -C build
@@ -26,4 +28,4 @@ jobs:
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'
grep -v 'Suppressed\|non-user\|non-system\|unknown argument.*mno-direct\|Found compiler error'