From db3beb8eb875b403e63767e36bf7db806fa39d21 Mon Sep 17 00:00:00 2001 From: Jens Georg <jens.georg@desy.de> Date: Mon, 19 Apr 2021 08:50:17 +0200 Subject: [PATCH] cppcheck: Try to use project file --- vars/helper.groovy | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/vars/helper.groovy b/vars/helper.groovy index 194089a..e207113 100644 --- a/vars/helper.groovy +++ b/vars/helper.groovy @@ -258,6 +258,11 @@ EOF """ archiveArtifacts artifacts: "build-${JOB_NAME}-${label}-${buildType}.tgz", onlyIfSuccessful: false } + + // Copy the include database from Debug build for running cppcheck afterwards + if (buildType == "Debug") { + stash includes: "/scratch/*/compile_commands.json" name: "compile_commands.json" + } } /**********************************************************************************************************************/ @@ -446,12 +451,14 @@ def doPublishBuildTestDeploy(ArrayList<String> builds) { // Note: this part runs only once per project, not for each branch! + unstash name: "compile_commands.json" + // Run cppcheck and publish the result. Since this is a static analysis, we don't have to run it for each label if(!env.DISABLE_CPPCHECK || env.DISABLE_CPPCHECK == '') { sh """ pwd mkdir -p build - cppcheck --enable=all --xml --xml-version=2 -ibuild . 2> ./build/cppcheck.xml + cppcheck --enable=all --xml --xml-version=2 --project=compile_commands.json 2> ./build/cppcheck.xml """ publishCppcheck pattern: 'build/cppcheck.xml' } -- GitLab