diff options
Diffstat (limited to 'travis.sh')
-rwxr-xr-x | travis.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/travis.sh b/travis.sh index a6562ef8912..7c858ca5433 100755 --- a/travis.sh +++ b/travis.sh @@ -36,12 +36,12 @@ case "$TARGET" in BUILD) git fetch --unshallow - ./gradlew build --no-daemon --console plain -PjacocoEnabled=true + ./gradlew build --no-daemon --console plain # 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 sonarqube --no-daemon --console plain \ + ./gradlew jacocoTestReport sonarqube --no-daemon --console plain \ -Dsonar.projectKey=org.sonarsource.sonarqube:sonarqube \ -Dsonar.organization=sonarsource \ -Dsonar.host.url=https://sonarcloud.io \ |