Logo AND Algorithmique Numérique Distribuée

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