From 20efb098e8cf7141e0b01470ea208f3eb336c28b Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Fri, 11 Sep 2020 12:05:37 +0200 Subject: [PATCH] ci: fix cppcheck include paths --- .gitlab-ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 28b594b8e..db517e3a8 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -177,7 +177,8 @@ test:cppcheck 1/2: --error-exitcode=1 --quiet --std=c++11 - -I include/villas + -I include + -I common/include src/ lib/ tests/unit/ | tee cppcheck-error.log @@ -203,7 +204,8 @@ test:cppcheck 2/2: --quiet --enable=warning,performance,portability,information,missingInclude --std=c++11 - -I include/villas + -I include + -I common/include src/ lib/ tests/unit/ | tee cppcheck-warn.log