From 8656478230c9bb319ba1279ef0c9cffce0f37853 Mon Sep 17 00:00:00 2001 From: Mauro Sardara Date: Mon, 29 Aug 2022 17:05:25 +0000 Subject: ci(sonar): build with coverage information Also: - Install clang-11 as default compiler with make deps Ref: HICN-752 Change-Id: Id6faf99ddd9c43a1c5804b8ace8df9dad27b82e6 Signed-off-by: Mauro Sardara --- scripts/run-sonar.sh | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'scripts/run-sonar.sh') diff --git a/scripts/run-sonar.sh b/scripts/run-sonar.sh index 7bb179d05..38547bbcf 100755 --- a/scripts/run-sonar.sh +++ b/scripts/run-sonar.sh @@ -22,11 +22,12 @@ cd /workspace git config --global --add safe.directory /workspace git config --global --add safe.directory /workspace/cmake -$HOME/.sonar/build-wrapper-linux-x86/build-wrapper-linux-x86-64 --out-dir bw-output make build +export SONAR_BUILD_WRAPPER=$HOME/.sonar/build-wrapper-linux-x86/build-wrapper-linux-x86-64 +make SONAR_OUT_DIR=bw-output build-coverage $SONAR_SCANNER_HOME/bin/sonar-scanner \ --Dsonar.organization=$PROJECT_ORGANIZATION \ --Dsonar.projectKey=$PROJECT_KEY \ --Dsonar.sources=/workspace \ --Dsonar.cfamily.build-wrapper-output=bw-output \ --Dsonar.host.url=$SONAR_HOST_URL + -Dsonar.organization=$PROJECT_ORGANIZATION \ + -Dsonar.projectKey=$PROJECT_KEY \ + -Dsonar.sources=/workspace \ + -Dsonar.cfamily.build-wrapper-output=bw-output \ + -Dsonar.host.url=$SONAR_HOST_URL -- cgit 1.2.3-korg