diff options
| author | 刘学利 <[email protected]> | 2023-02-20 06:04:22 +0000 |
|---|---|---|
| committer | 刘学利 <[email protected]> | 2023-02-20 06:04:22 +0000 |
| commit | 7b90896a3d33bb76329cb12e9aa2a2719ea47d78 (patch) | |
| tree | db49eeb00db4a57ab7c409e35d27b4f7aa89b25b /.gitlab-ci.yml | |
| parent | fa0ebd48e689499d495852915c16d15a206c134e (diff) | |
支持根据DNS请求及相应的应答识别为一个dns sessionv2.1.5
Diffstat (limited to '.gitlab-ci.yml')
| -rw-r--r-- | .gitlab-ci.yml | 22 |
1 files changed, 20 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a233c77..e19a901 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -53,7 +53,16 @@ run_cppcheck_for_centos7: - mkdir build || true - cd build - cmake3 -DCMAKE_EXPORT_COMPILE_COMMANDS=ON .. - - cppcheck --project=compile_commands.json --enable=all --error-exitcode=1 --suppress=unusedFunction --suppress=missingInclude + - cppcheck --project=compile_commands.json + --enable=all + --error-exitcode=1 + --suppress=unusedFunction + --suppress=missingInclude + --suppress=uselessAssignmentPtrArg + --suppress=unreachableCode + --suppress=internalAstError + --suppress=unmatchedSuppression + --suppress=memleakOnRealloc tags: - share @@ -64,7 +73,16 @@ run_cppcheck_for_centos8: - mkdir build || true - cd build - cmake3 -DCMAKE_EXPORT_COMPILE_COMMANDS=ON .. - - cppcheck --project=compile_commands.json --enable=all --error-exitcode=1 --suppress=unusedFunction --suppress=missingInclude + - cppcheck --project=compile_commands.json + --enable=all + --error-exitcode=1 + --suppress=unusedFunction + --suppress=missingInclude + --suppress=uselessAssignmentPtrArg + --suppress=unreachableCode + --suppress=internalAstError + --suppress=unmatchedSuppression + --suppress=memleakOnRealloc tags: - share |
