From e991f2c4f317908a2c1cebdfcf77cfda720150fb Mon Sep 17 00:00:00 2001 From: Andreas Dangel Date: Sun, 1 Oct 2017 13:40:49 +0200 Subject: [PATCH] [ci] run sonar and coveralls without travis wait --- .travis/build-coveralls.sh | 3 +-- .travis/build-sonar.sh | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.travis/build-coveralls.sh b/.travis/build-coveralls.sh index d433c86886..a632961024 100755 --- a/.travis/build-coveralls.sh +++ b/.travis/build-coveralls.sh @@ -12,5 +12,4 @@ if ! travis_isPush; then fi -travis_wait ./mvnw clean test jacoco:report coveralls:report -Pcoveralls -B -V -q - +./mvnw clean test jacoco:report coveralls:report -Pcoveralls -B -V diff --git a/.travis/build-sonar.sh b/.travis/build-sonar.sh index c852ec977b..0d2313efcb 100755 --- a/.travis/build-sonar.sh +++ b/.travis/build-sonar.sh @@ -13,5 +13,4 @@ fi # Run the build, truncate output due to Travis log limits -travis_wait ./mvnw clean org.jacoco:jacoco-maven-plugin:prepare-agent package sonar:sonar -Dsonar.host.url=https://sonarqube.com -Dsonar.login=${SONAR_TOKEN} -B -V -q - +./mvnw clean org.jacoco:jacoco-maven-plugin:prepare-agent package sonar:sonar -Dsonar.host.url=https://sonarqube.com -Dsonar.login=${SONAR_TOKEN} -B -V