Adopt feedback

This commit is contained in:
Juan Martín Sotuyo Dodero
2017-06-24 17:28:40 -03:00
parent 66bed6779c
commit c9990a53cb
3 changed files with 6 additions and 6 deletions

View File

@ -34,7 +34,7 @@ before_install:
- bash .travis/configure-maven.sh - bash .travis/configure-maven.sh
install: true install: true
before_script: true before_script: true
script: bash .travis/build-$BUILD.sh script: source .travis/build-$BUILD.sh
after_success: true after_success: true

View File

@ -13,9 +13,9 @@ fi
( (
# Run the build, redirect output into the file # Run the build, truncate output due to Travis log limits
travis_wait ./mvnw install -DskipTests=true -B -V travis_wait ./mvnw install -DskipTests=true -B -V | tail -100
travis_wait ./mvnw site site:stage -Psite -B -V travis_wait ./mvnw site site:stage -Psite -B -V | tail -100
) )
# create pmd-doc archive # create pmd-doc archive

View File

@ -12,6 +12,6 @@ if ! travis_isPush; then
fi fi
# Run the build, redirect output into the file # 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 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 | tail -100