Skip to content
Snippets Groups Projects
Unverified Commit a57553d8 authored by Lars Bilke's avatar Lars Bilke Committed by GitHub
Browse files

Merge pull request #2629 from endJunction/CppCheckAndJenkinsGates

Cpp check and jenkins gates
parents 73d1aeda 9dc25be3
No related branches found
No related tags found
No related merge requests found
......@@ -428,7 +428,7 @@ pipeline {
excludeFile('.*\\.conan.*'), excludeFile('.*ThirdParty.*'),
excludeFile('.*thread.hpp')],
tools: [msBuild(name: 'MSVC', pattern: 'build/build*.log')],
qualityGates: [[threshold: 10, type: 'TOTAL', unstable: true]]
qualityGates: [[threshold: 9, type: 'TOTAL', unstable: true]]
}
success {
archiveArtifacts 'build/*.zip,build/conaninfo.txt'
......@@ -516,7 +516,7 @@ pipeline {
recordIssues enabledForFailure: true, filters: [
excludeFile('.*\\.conan.*')],
tools: [clangTidy(name: 'Clang-Tidy', pattern: 'build/build.log')],
qualityGates: [[threshold: 513, type: 'TOTAL', unstable: true]]
qualityGates: [[threshold: 200, type: 'TOTAL', unstable: true]]
}
}
}
......
......@@ -8,7 +8,7 @@ endif()
add_custom_target(cppcheck
COMMAND ${CPPCHECK_TOOL_PATH}
# --force
--force
--enable=all
# --inconclusive
${CPPCHECK_THREADS}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment