From 9c45a1ec2dd257882aff61cbc3c6721429383d17 Mon Sep 17 00:00:00 2001 From: Lars Bilke <lars.bilke@ufz.de> Date: Fri, 6 Dec 2019 09:23:02 +0100 Subject: [PATCH] [Jenkins] Ignore netcdf warning on gcc gui job. Archive cppcheck.log. --- Jenkinsfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index f0c2c0e5828..30d3d9b93ad 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -226,6 +226,7 @@ pipeline { always { recordIssues enabledForFailure: true, filters: [ excludeFile('.*qrc_icons\\.cpp.*'), + excludeFile('ncGroup\\.h'), excludeMessage('.*tmpnam.*')], tools: [gcc4(name: 'GCC-GUI', id: 'gcc4-gui', pattern: 'build/build*.log')], @@ -233,7 +234,7 @@ pipeline { recordIssues enabledForFailure: true, tools: [cppCheck(pattern: 'build/cppcheck.log')] } - success { archiveArtifacts 'build/*.tar.gz,build/conaninfo.txt' } + success { archiveArtifacts 'build/*.tar.gz,build/conaninfo.txt,build/cppcheck.log' } } } // ********************* Docker-Conan-Debug **************************** -- GitLab