aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/run-sonar.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/run-sonar.sh')
-rwxr-xr-xscripts/run-sonar.sh27
1 files changed, 27 insertions, 0 deletions
diff --git a/scripts/run-sonar.sh b/scripts/run-sonar.sh
new file mode 100755
index 000000000..b1b280518
--- /dev/null
+++ b/scripts/run-sonar.sh
@@ -0,0 +1,27 @@
+#!/bin/bash
+
+# SONAR_HOST_URL=https://sonarcloud.io
+# PROJECT_KEY=fdio_hicn
+# PROJECT_ORGANIZATION=fdio
+
+export SONAR_TOKEN=$API_TOKEN
+export SONAR_SCANNER_VERSION=4.7.0.2747
+export SONAR_SCANNER_HOME=$HOME/.sonar/sonar-scanner-$SONAR_SCANNER_VERSION-linux
+curl --create-dirs -sSLo $HOME/.sonar/sonar-scanner.zip https://binaries.sonarsource.com/Distribution/sonar-scanner-cli/sonar-scanner-cli-$SONAR_SCANNER_VERSION-linux.zip
+unzip -o $HOME/.sonar/sonar-scanner.zip -d $HOME/.sonar/
+export PATH=$SONAR_SCANNER_HOME/bin:$PATH
+export SONAR_SCANNER_OPTS="-server"
+curl --create-dirs -sSLo $HOME/.sonar/build-wrapper-linux-x86.zip https://sonarcloud.io/static/cpp/build-wrapper-linux-x86.zip
+unzip -o $HOME/.sonar/build-wrapper-linux-x86.zip -d $HOME/.sonar/
+export PATH=$HOME/.sonar/build-wrapper-linux-x86:$PATH
+
+cd /workspace
+
+$HOME/.sonar/build-wrapper-linux-x86/build-wrapper-linux-x86-64 --out-dir bw-output make build
+
+$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