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-email.git
The following commit(s) were added to refs/heads/master by this push: new 880abe4 Add --no-transfer-progress to CI builds. 880abe4 is described below commit 880abe488d5454a891cddd61f71f5eeed29454be Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Wed Aug 5 09:30:52 2020 -0400 Add --no-transfer-progress to CI builds. Drop non-LTS builds except the latest. --- .github/workflows/maven.yml | 2 +- .travis.yml | 6 +----- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 86bbf63..a69864a 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 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 15f9f11..e142b61 100644 --- a/.travis.yml +++ b/.travis.yml @@ -18,12 +18,8 @@ sudo: false jdk: - openjdk8 - - openjdk9 - - openjdk10 - openjdk11 - - openjdk12 - - openjdk13 - openjdk14 after_success: - - mvn clean cobertura:cobertura coveralls:report + - mvn -V clean cobertura:cobertura coveralls:report --no-transfer-progress