aboutsummaryrefslogtreecommitdiffstats
path: root/travis.sh
diff options
context:
space:
mode:
authorJeremy Davis <jeremy.davis@sonarsource.com>2022-02-16 16:55:01 +0100
committersonartech <sonartech@sonarsource.com>2022-02-17 20:03:22 +0000
commite437b761dba11a7c306b94ae17ada1b41cf13c28 (patch)
tree126740c91c1c69607ed91c3265c962fbbdec4bda /travis.sh
parent657c45de3c9f53dc1dd9f9adb1f6c9904d450f9a (diff)
downloadsonarqube-e437b761dba11a7c306b94ae17ada1b41cf13c28.tar.gz
sonarqube-e437b761dba11a7c306b94ae17ada1b41cf13c28.zip
[NO JIRA] Analyse SonarQube on NEXT
Diffstat (limited to 'travis.sh')
-rwxr-xr-xtravis.sh12
1 files changed, 5 insertions, 7 deletions
diff --git a/travis.sh b/travis.sh
index 676ee886aa6..6e7cbdca7fb 100755
--- a/travis.sh
+++ b/travis.sh
@@ -37,19 +37,17 @@ git fetch --unshallow
# 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
+if [[ -n "${NEXT_TOKEN-}" ]]; then
if [[ "${TRAVIS_BRANCH}" == "master" ]]; then
./gradlew jacocoTestReport :server:sonar-web:yarn_validate-ci 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.host.url=https://next.sonarqube.com/sonarqube \
+ -Dsonar.login="$NEXT_TOKEN"
else
./gradlew jacocoTestReport :server:sonar-web:yarn_validate-ci 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.host.url=https://next.sonarqube.com/sonarqube \
+ -Dsonar.login="$NEXT_TOKEN" \
-Dsonar.branch.name="$TRAVIS_BRANCH"
fi