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-pool.git
The following commit(s) were added to refs/heads/master by this push: new 71f7b27 Add --no-transfer-progress to CI builds. 71f7b27 is described below commit 71f7b276dcd3d9a6bf566a89fb1dd0ad192f83c7 Author: Gary Gregory <gardgreg...@gmail.com> AuthorDate: Wed Aug 5 09:41:32 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 ad19aac..b0824c8 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -37,4 +37,4 @@ jobs: with: java-version: ${{ matrix.java }} - name: Build with Maven - run: mvn -V -B --file pom.xml + run: mvn -V -B --file pom.xml --no-transfer-progress diff --git a/.travis.yml b/.travis.yml index a798370..b174888 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 cobertura:cobertura coveralls:report -Ptravis-cobertura + - mvn -V --no-transfer-progress clean cobertura:cobertura coveralls:report -Ptravis-cobertura