Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Sonar is currently failing, try to upgrade sonar-scanner.
[simgrid.git] / tools / internal / travis-sonarqube.sh
1 #!/usr/bin/env sh
2
3 # Install and run SonarQube on travis.
4 #
5 # Use it as a wrapper to your build command, eg: ./travis-sonarqube.sh make VERBOSE=1
6
7 # On macOS or with pull requests, you don't want to run SonarQube but to exec the build command directly.
8
9 # Be verbose and fail fast
10 set -ex
11
12 # Install required software
13 installSonarQubeScanner() {
14   local SONAR_SCANNER_VERSION=3.2.0.1227
15   export SONAR_SCANNER_HOME=$HOME/.sonar/sonar-scanner-$SONAR_SCANNER_VERSION
16   rm -rf $SONAR_SCANNER_HOME
17   mkdir -p $SONAR_SCANNER_HOME
18   curl -sSLo $HOME/.sonar/sonar-scanner.zip http://repo1.maven.org/maven2/org/sonarsource/scanner/cli/sonar-scanner-cli/$SONAR_SCANNER_VERSION/sonar-scanner-cli-$SONAR_SCANNER_VERSION.zip
19   unzip $HOME/.sonar/sonar-scanner.zip -d $HOME/.sonar/
20   rm $HOME/.sonar/sonar-scanner.zip
21   export PATH=$SONAR_SCANNER_HOME/bin:$PATH
22   export SONAR_SCANNER_OPTS="-server"
23 }
24 installBuildWrapper() {
25   curl -LsS https://sonarcloud.io/static/cpp/build-wrapper-linux-x86.zip > build-wrapper-linux-x86.zip
26   unzip build-wrapper-linux-x86.zip
27 }
28 installSonarQubeScanner
29 installBuildWrapper
30
31 # triggers the compilation through the build wrapper to gather compilation database
32 ./build-wrapper-linux-x86/build-wrapper-linux-x86-64 --out-dir bw-outputs "$@"
33
34 # Run ctest before sonar to gather coverage some information
35 set +e
36 ctest --output-on-failure
37 outcome=$?
38 set -e
39
40 # Only run sonar on master (not on pull requests)
41 if [ "$TRAVIS_PULL_REQUEST" != "false" ] ; then
42   exit $outcome
43 fi
44
45 # generate the gcov files
46 ctest -D ExperimentalCoverage
47
48 # and finally execute the actual SonarQube analysis
49 # (the SONAR_TOKEN is set from the travis web interface, to not expose it with an ongoing "set -x")
50 # See https://docs.travis-ci.com/user/sonarqube/ for more info on tokens
51 # don't show the token in the logs
52 set +x
53 sonar-scanner -Dsonar.host.url=https://sonarcloud.io -Dsonar.login=$SONAR_TOKEN 2>&1 \
54   | grep -v 'INFO: Parsing /home/travis/build/simgrid/simgrid/Testing/CoverageInfo'  \
55   | grep -v 'WARN: File not analysed by Sonar, so ignoring coverage: /usr/include/'
56
57 exit $outcome