From dfd0bc4b775567a4ed5d7e436e7649d2f0c067c4 Mon Sep 17 00:00:00 2001 From: Lars Bilke <lars.bilke@ufz.de> Date: Mon, 18 Mar 2019 11:23:44 +0100 Subject: [PATCH] [Jenkins] Parse Doxygen warnings with gcc4 parser. https://github.com/jenkinsci/warnings-ng-plugin/blob/master/CHANGELOG.md#400---2019-3-15 --- Jenkinsfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index c8a523059d4..4ead58b2409 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -148,7 +148,9 @@ pipeline { excludeFile('-'), excludeFile('.*Functional\\.h'), excludeFile('.*gmock-.*\\.h'), excludeFile('.*gtest-.*\\.h') ], - tools: [doxygen(pattern: 'build/DoxygenWarnings.log')], + // Doxygen is handled by gcc4 parser as well + tools: [gcc4(name: 'Doxygen', id: 'doxygen', + pattern: 'build/DoxygenWarnings.log')], failedTotalAll: 1 } success { -- GitLab