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-text.git
The following commit(s) were added to refs/heads/master by this push: new 849522c Add --no-transfer-progress to CI builds. 849522c is described below commit 849522cecb92bd9e6c22f01b77bf38b876da5421 Author: Gary Gregory <gardgreg...@gmail.com> AuthorDate: Wed Aug 5 09:44:05 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 d2a0dbc..e75e1d2 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -39,4 +39,4 @@ jobs: with: java-version: ${{ matrix.java }} - name: Build with Maven - run: mvn -V apache-rat:check spotbugs:check javadoc:javadoc -Ddoclint=all package --file pom.xml + run: mvn -V apache-rat:check spotbugs:check javadoc:javadoc -Ddoclint=all package --file pom.xml --no-transfer-progress diff --git a/.travis.yml b/.travis.yml index 738c732..c453c94 100644 --- a/.travis.yml +++ b/.travis.yml @@ -27,7 +27,7 @@ matrix: - jdk: openjdk-ea script: - - mvn + - mvn -V --no-transfer-progress after_success: - - mvn clean test jacoco:report coveralls:report -Ptravis-jacoco + - mvn -V --no-transfer-progress clean test jacoco:report coveralls:report -Ptravis-jacoco