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-imaging.git
The following commit(s) were added to refs/heads/master by this push: new 2845443 Add --no-transfer-progress to CI builds. 2845443 is described below commit 2845443444643a3c2992169258e22344e419cb16 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Wed Aug 5 09:34:02 2020 -0400 Add --no-transfer-progress to CI builds. Drop non-LTS builds except the latest. --- .github/workflows/maven.yml | 2 +- .travis.yml | 7 ++----- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 29b0882..0bedeb3 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -38,4 +38,4 @@ jobs: with: java-version: ${{ matrix.java }} - name: Build with Maven - run: mvn + run: mvn -V --no-transfer-progress diff --git a/.travis.yml b/.travis.yml index 1c3aecd..faee3c9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -22,8 +22,6 @@ jdk: - oraclejdk11 - openjdk8 - openjdk11 - - openjdk12 - - openjdk13 - openjdk14 - openjdk-ea @@ -32,8 +30,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 clean test jacoco:report coveralls:report -Ptravis-jacoco --no-transfer-progress