You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2020/08/05 13:27:35 UTC

[commons-csv] branch master updated: Add --no-transfer-progress to CI builds.

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


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

commit 7bb167649e65c5b9038a91b94dc866619e1b85ef
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Wed Aug 5 09:27:26 2020 -0400

    Add --no-transfer-progress to CI builds.
---
 .github/workflows/maven.yml | 2 +-
 .travis.yml                 | 2 +-
 2 files changed, 2 insertions(+), 2 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 390245c..91df7bf 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -27,5 +27,5 @@ matrix:
   allow_failures:
     - jdk: openjdk-ea
 after_success:
-  - mvn -B -V clean test jacoco:report coveralls:report -Ptravis-jacoco
+  - mvn -B -V clean test jacoco:report coveralls:report -Ptravis-jacoco --no-transfer-progress
   
\ No newline at end of file