Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
145772eff78fbc4890ce7ae2b7bbe73b3562c6dd
[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   exec "$@"
11 fi
12 # Passed this point, we are on Linux and not in a PR (exec never returns)
13
14
15 # Be verbose and fail fast
16 set -ex
17
18 # Install required software
19 installSonarQubeScanner() {
20   export SONAR_SCANNER_HOME=$HOME/.sonar/sonar-scanner-2.8
21   rm -rf $SONAR_SCANNER_HOME
22   mkdir -p $SONAR_SCANNER_HOME
23   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
24   unzip $HOME/.sonar/sonar-scanner.zip -d $HOME/.sonar/
25   rm $HOME/.sonar/sonar-scanner.zip
26   export PATH=$SONAR_SCANNER_HOME/bin:$PATH
27   export SONAR_SCANNER_OPTS="-server"
28 }
29 installBuildWrapper() {
30   curl -LsS https://sonarqube.com/static/cpp/build-wrapper-linux-x86.zip > build-wrapper-linux-x86.zip
31   unzip build-wrapper-linux-x86.zip
32 }
33 installSonarQubeScanner
34 installBuildWrapper
35
36 # triggers the compilation through the build wrapper to gather compilation database
37 ./build-wrapper-linux-x86/build-wrapper-linux-x86-64 --out-dir bw-outputs "$@"
38
39 # Run ctest before sonar to gather coverage some information
40 ctest --output-on-failure --timeout 100
41
42 # and finally execute the actual SonarQube analysis 
43 # (the SONAR_TOKEN is set from the travis web interface, to not expose it with an ongoing "set -x")
44 # See https://docs.travis-ci.com/user/sonarqube/ for more info on tokens
45 # don't show the token in the logs
46 set +x
47 sonar-scanner -Dsonar.host.url=https://sonarqube.com -Dsonar.login=$SONAR_TOKEN