diff options
Diffstat (limited to 'travis.sh')
-rwxr-xr-x | travis.sh | 12 |
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 |