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/02/25 21:25:58 UTC

[commons-vfs] branch master updated: Fix travis-ci to make allow_failures: - openjdk-ea for https://jira.apache.org/jira/browse/VFS-765 (#87)

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


The following commit(s) were added to refs/heads/master by this push:
     new 249d1dc  Fix travis-ci to make allow_failures: - openjdk-ea for https://jira.apache.org/jira/browse/VFS-765 (#87)
249d1dc is described below

commit 249d1dc9fb3f2bd5209aaa299c4ed61414f1fd78
Author: XenoAmess <xe...@gmail.com>
AuthorDate: Wed Feb 26 05:25:51 2020 +0800

    Fix travis-ci to make allow_failures: - openjdk-ea for https://jira.apache.org/jira/browse/VFS-765 (#87)
    
    WebDAV test fails on Java 15-EA.
---
 .travis.yml | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/.travis.yml b/.travis.yml
index d948abd..202dc15 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -21,8 +21,12 @@ jdk:
   - openjdk11
   - openjdk12
   - openjdk13
-  - openjdk-ea
   - oraclejdk11
+  - openjdk-ea
+
+matrix:
+  allow_failures:
+    - jdk: openjdk-ea
 
 after_success:
   - mvn -V -B -e clean cobertura:cobertura coveralls:report