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-fileupload.git
The following commit(s) were added to refs/heads/master by this push: new cb9d026 Add --no-transfer-progress to CI builds. cb9d026 is described below commit cb9d026c56bc14a91a87d6847c532341f39a01de Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Wed Aug 5 09:33:02 2020 -0400 Add --no-transfer-progress to CI builds. Drop non-LTS builds except the latest and EA. --- .github/workflows/maven.yml | 2 +- .travis.yml | 4 +--- 2 files changed, 2 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 3de9016..db171e7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -26,10 +26,8 @@ jdk: - oraclejdk11 - openjdk8 - openjdk11 - - openjdk12 - - openjdk13 - openjdk14 - openjdk-ea after_success: - - mvn clean test jacoco:report coveralls:report -Ptravis-jacoco + - mvn -V clean test jacoco:report coveralls:report -Ptravis-jacoco --no-transfer-progress