We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1bd62bb commit a91bedfCopy full SHA for a91bedf
1 file changed
.github/workflows/static-analysis.yml
@@ -50,7 +50,7 @@ jobs:
50
CC: clang
51
run: |
52
. scripts/environment.sh
53
- meson setup -Dis_analysis_build=true bld
+ meson setup bld
54
55
# Install CodeChecker, gcc and cppcheck.
56
- name: Install CodeChecker
@@ -67,7 +67,9 @@ jobs:
67
68
# Run the analysis.
69
- name: Run CodeChecker
70
- run: CodeChecker analyze ./bld/compile_commands.json -o results --enable sensitive --ctu
+ # Since we already have ~100 warnings, i have disabled the sensitive checks for now.
71
+ # Should we ever run out of warnings, feel free to enable them again :D
72
+ run: CodeChecker analyze ./bld/compile_commands.json -o results --ctu #--enable sensitive
73
74
# Parse the results and generate an HTML report.
75
- name: Generate HTML report
0 commit comments