Browse Source

SONAR-13259 Fix branch analysis on Travis CI for public repo

tags/8.3.0.34182
Wouter Admiraal 4 years ago
parent
commit
f0defbad20
1 changed files with 14 additions and 5 deletions
  1. 14
    5
      travis.sh

+ 14
- 5
travis.sh View File

@@ -41,11 +41,20 @@ BUILD)
# the '-' at the end is needed when using set -u (the 'nounset' flag)
# see https://stackoverflow.com/a/9824943/641955
if [[ -n "${SONAR_TOKEN-}" ]]; then
./gradlew jacocoTestReport sonarqube --info --no-daemon --console plain \
-Dsonar.projectKey=org.sonarsource.sonarqube:sonarqube \
-Dsonar.organization=sonarsource \
-Dsonar.host.url=https://sonarcloud.io \
-Dsonar.login="$SONAR_TOKEN"
if [[ "${TRAVIS_BRANCH}" == "master" ]]; then
./gradlew jacocoTestReport sonarqube --info --no-daemon --console plain \
-Dsonar.projectKey=org.sonarsource.sonarqube:sonarqube \
-Dsonar.organization=sonarsource \
-Dsonar.host.url=https://sonarcloud.io \
-Dsonar.login="$SONAR_TOKEN"
else
./gradlew jacocoTestReport sonarqube --info --no-daemon --console plain \
-Dsonar.projectKey=org.sonarsource.sonarqube:sonarqube \
-Dsonar.organization=sonarsource \
-Dsonar.host.url=https://sonarcloud.io \
-Dsonar.login="$SONAR_TOKEN" \
-Dsonar.branch.name="$TRAVIS_BRANCH"
fi
# Wait for 5mins, hopefully the report will be processed.
sleep 5m

Loading…
Cancel
Save