From 491a019c61a111b5aa91ff491fab9ee46545c628 Mon Sep 17 00:00:00 2001
From: Jens Georg <jens.georg@desy.de>
Date: Mon, 19 Apr 2021 09:55:49 +0200
Subject: [PATCH] cppcheck: Add fallback if build db does not exist

---
 vars/helper.groovy | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/vars/helper.groovy b/vars/helper.groovy
index c2e6c12..047d052 100644
--- a/vars/helper.groovy
+++ b/vars/helper.groovy
@@ -458,7 +458,11 @@ def doPublishBuildTestDeploy(ArrayList<String> builds) {
     sh """
       pwd
       mkdir -p build
-      cppcheck --enable=all --xml --xml-version=2  --project=compile_commands.json 2> ./build/cppcheck.xml
+      if [ -e compile_commands.json ]; then
+        cppcheck --enable=all --xml --xml-version=2  --project=compile_commands.json 2> ./build/cppcheck.xml
+      else
+        cppcheck --enable=all --xml --xml-version=2  -ibuild -Iinclude . 2> ./build/cppcheck.xml
+      fi
     """
     publishCppcheck pattern: 'build/cppcheck.xml'
   }
-- 
GitLab