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-collections.git


The following commit(s) were added to refs/heads/master by this push:
     new 27a78c9  Add --no-transfer-progress to CI builds.
27a78c9 is described below

commit 27a78c961b9edc7461d4d5d0844cf95731939092
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Wed Aug 5 09:23:41 2020 -0400

    Add --no-transfer-progress to CI builds.
---
 .github/workflows/maven.yml | 2 +-
 .travis.yml                 | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index dd3919a..7f2ed4d 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 package --file pom.xml
+      run: mvn -V package --file pom.xml --no-transfer-progress
diff --git a/.travis.yml b/.travis.yml
index ffc1d7b..9fd8aad 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -31,10 +31,10 @@ jdk:
   - openjdk-ea
 
 script:
-  - mvn
+  - mvn -V --no-transfer-progress
   # japicmp requires a package
-  - mvn jar:jar japicmp:cmp -P japicmp
+  - mvn -V jar:jar japicmp:cmp -P japicmp --no-transfer-progress
 
 after_success:
   # jacoco will run in the main script. Include the profile to submit to 
coveralls.
-  - mvn jacoco:report coveralls:report -Ptravis-jacoco
+  - mvn -V jacoco:report coveralls:report -Ptravis-jacoco 
--no-transfer-progress

Reply via email to