diff options
| author | 刘学利 <[email protected]> | 2024-03-11 10:31:48 +0000 |
|---|---|---|
| committer | 刘学利 <[email protected]> | 2024-03-11 10:31:48 +0000 |
| commit | 3d59a92dd67a5f24fea233963ab49b644075a691 (patch) | |
| tree | e5236fe45d514925463d1149dabf2e34dcda53e2 /.gitlab-ci.yml | |
| parent | 8f3bde2163664e68a9fd7374d64cb935447f1b40 (diff) | |
TSG-19861: Support client hello fragmentv3.0.5
Diffstat (limited to '.gitlab-ci.yml')
| -rw-r--r-- | .gitlab-ci.yml | 26 |
1 files changed, 24 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f7348e5..656ab5f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -20,7 +20,18 @@ 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 --suppress=uselessAssignmentPtrArg --suppress=unreachableCode --suppress=unreadVariable --suppress=unmatchedSuppression + - cppcheck --project=compile_commands.json + --enable=all + --error-exitcode=1 + --suppress=unusedFunction + --suppress=missingInclude + --suppress=uselessAssignmentPtrArg + --suppress=unreachableCode + --suppress=unreadVariable + --suppress=unmatchedSuppression + --suppress=variableScope + --suppress=constParameter + --suppress=*:${PROJECT_SOURCE_DIR}/src/utstring.h tags: - share @@ -31,7 +42,18 @@ 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 --suppress=uselessAssignmentPtrArg --suppress=unreachableCode --suppress=unreadVariable --suppress=unmatchedSuppression + - cppcheck --project=compile_commands.json + --enable=all + --error-exitcode=1 + --suppress=unusedFunction + --suppress=missingInclude + --suppress=uselessAssignmentPtrArg + --suppress=unreachableCode + --suppress=unreadVariable + --suppress=unmatchedSuppression + --suppress=variableScope + --suppress=constParameter + --suppress=*:${PROJECT_SOURCE_DIR}/src/utstring.h tags: - share |
