Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
fix makedist
[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 # EDIT: Don't run the tests on travis because they take too much time.
36 #set +e
37 #ctest -j2 --output-on-failure
38 #outcome=$?
39 #set -e
40 outcome=0
41
42 # Only run sonar on master (not on pull requests)
43 if [ "$TRAVIS_PULL_REQUEST" != "false" ] ; then
44   exit $outcome
45 fi
46
47 # generate the gcov files
48 #ctest -D ExperimentalCoverage
49
50 # and finally execute the actual SonarQube analysis
51 # (the SONAR_TOKEN is set from the travis web interface, to not expose it with an ongoing "set -x")
52 # See https://docs.travis-ci.com/user/sonarqube/ for more info on tokens
53 # don't show the token in the logs
54 set +x
55 sonar-scanner -Dsonar.host.url=https://sonarcloud.io -Dsonar.login=$SONAR_TOKEN 2>&1 \
56   | grep -v 'INFO: Parsing /home/travis/build/simgrid/simgrid/Testing/CoverageInfo'  \
57   | grep -v 'WARN: File not analysed by Sonar, so ignoring coverage: /usr/include/'
58
59 exit $outcome