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/11/21 02:33:24 UTC

[commons-fileupload] 01/02: Travis: Replace Java 14 with 15. No need for a PPC build. One Java 11 build.

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

commit d329bfe300a63175a74e0c2d8d85333928e2e366
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Fri Nov 20 21:32:18 2020 -0500

    Travis: Replace Java 14 with 15. No need for a PPC build. One Java 11
    build.
---
 .travis.yml | 12 ++++--------
 1 file changed, 4 insertions(+), 8 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index c72e578..b080515 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -20,16 +20,12 @@ cache:
     - $HOME/.m2
 matrix:
   include:
-    - os: linux-ppc64le
-      jdk: openjdk8
+    - jdk: openjdk8
+    - jdk: openjdk11
+    - jdk: openjdk15
+    - jdk: openjdk-ea
   allow_failures:
     - jdk: openjdk-ea
-jdk:
-  - oraclejdk11
-  - openjdk8
-  - openjdk11
-  - openjdk14
-  - openjdk-ea
 
 after_success:
   - mvn clean test jacoco:report coveralls:report -Ptravis-jacoco