Skip to content

Commit 40fd872

Browse files
committed
Disable CPPCHECK in CMake configuration
1 parent 8c4d0e3 commit 40fd872

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,10 @@ jobs:
2727
- name: Add MSBuild to PATH
2828
uses: microsoft/setup-msbuild@v2
2929

30+
# 同时禁用 cppcheck 和 cpplint
3031
- name: Configure CMake
3132
run: |
32-
cmake -B build -G "Visual Studio 17 2022" -DSQLITECPP_RUN_CPPLINT=OFF
33+
cmake -B build -G "Visual Studio 17 2022" -DSQLITECPP_RUN_CPPCHECK=OFF -DSQLITECPP_RUN_CPPLINT=OFF
3334
3435
- name: Build
3536
run: |

0 commit comments

Comments
 (0)