Browse Source

[NO JIRA] Analyse SonarQube on NEXT

tags/9.4.0.54424
Jeremy Davis 2 years ago
parent
commit
e437b761db
2 changed files with 7 additions and 9 deletions
  1. 2
    2
      .travis/run_iris.sh
  2. 5
    7
      travis.sh

+ 2
- 2
.travis/run_iris.sh View File

@@ -23,7 +23,7 @@ java \
-Diris.source.url=https://next.sonarqube.com/sonarqube \
-Diris.source.token=$NEXT_TOKEN \
-Diris.destination.projectKey=org.sonarsource.sonarqube:sonarqube \
-Diris.destination.url=$SONAR_HOST_URL \
-Diris.destination.token=$SONAR_TOKEN \
-Diris.destination.url=https://next.sonarqube.com/sonarqube \
-Diris.destination.token=$NEXT_TOKEN \
-Diris.maxcountposts=50 \
-jar iris-\[RELEASE\]-jar-with-dependencies.jar

+ 5
- 7
travis.sh View File

@@ -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

Loading…
Cancel
Save