Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .clang-tidy
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ Checks: >
-portability-template-virtual-member-function,
-readability-magic-numbers

WarningsAsErrors: "*"
HeaderFilterRegex: '.*/(modules|tasks)/.*'

CheckOptions:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/static-analysis-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
- name: CMake configure
run: >
cmake -S . -B build -G Ninja
-D CMAKE_BUILD_TYPE=RELEASE -DCMAKE_EXPORT_COMPILE_COMMANDS=ON
-D CMAKE_BUILD_TYPE=RELEASE -DCMAKE_EXPORT_COMPILE_COMMANDS=ON -DCMAKE_COMPILE_WARNING_AS_ERROR=ON
env:
CC: clang-21
CXX: clang++-21
Expand Down Expand Up @@ -96,7 +96,7 @@ jobs:
- name: CMake configure
run: >
cmake -S . -B build -G Ninja
-D CMAKE_BUILD_TYPE=RELEASE -DCMAKE_EXPORT_COMPILE_COMMANDS=ON
-D CMAKE_BUILD_TYPE=RELEASE -DCMAKE_EXPORT_COMPILE_COMMANDS=ON -DCMAKE_COMPILE_WARNING_AS_ERROR=ON
env:
CC: gcc-14
CXX: g++-14
Expand Down
Loading