Skip to content
Snippets Groups Projects
Commit e42e3e94 authored by Lars Bilke's avatar Lars Bilke
Browse files

[Jenkins] Publish checker results on failure.

parent 20ef2dc6
No related branches found
No related tags found
No related merge requests found
......@@ -112,13 +112,14 @@ pipeline {
excludeFile('.*qrc_icons\\.cpp.*'), excludeFile('.*QVTKWidget.*')],
tools: [gcc4(name: 'GCC', pattern: 'build/build.log')],
unstableTotalAll: 3
recordIssues filters: [
recordIssues enabledForFailure: true, filters: [
excludeFile('-'), excludeFile('.*Functional\\.h'),
excludeFile('.*gmock-.*\\.h'), excludeFile('.*gtest-.*\\.h')
],
tools: [doxygen(pattern: 'build/DoxygenWarnings.log')],
failedTotalAll: 1
recordIssues tools: [cppCheck(pattern: 'build/cppcheck.log')]
recordIssues enabledForFailure: true,
tools: [cppCheck(pattern: 'build/cppcheck.log')]
}
success {
publishHTML(target: [allowMissing: false, alwaysLinkToLastBuild: true,
......
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