This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-validator.git
The following commit(s) were added to refs/heads/master by this push: new 659cc85 Add --no-transfer-progress to CI builds. 659cc85 is described below commit 659cc8515c45d03168a1477398d0749b3fad514d Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Wed Aug 5 09:44:37 2020 -0400 Add --no-transfer-progress to CI builds. --- .github/workflows/maven.yml | 2 +- .travis.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 073b08c..bbd9387 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -37,5 +37,5 @@ jobs: with: java-version: ${{ matrix.java }} - name: Build with Maven - run: mvn --batch-mode apache-rat:check javadoc:javadoc -Ddoclint=all package --file pom.xml + run: mvn --batch-mode apache-rat:check javadoc:javadoc -Ddoclint=all package --file pom.xml --no-transfer-progress # run: mvn --batch-mode apache-rat:check package --file pom.xml diff --git a/.travis.yml b/.travis.yml index b7fc5cc..d77ce3b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -26,6 +26,6 @@ matrix: - os: linux-ppc64le jdk: openjdk8 script: - - mvn clean test + - mvn -V --no-transfer-progress clean test after_success: - - mvn clean cobertura:cobertura coveralls:report + - mvn -V --no-transfer-progress clean cobertura:cobertura coveralls:report