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-csv.git
The following commit(s) were added to refs/heads/master by this push:
new 852e11e Allow java-ea to fail (#72)
852e11e is described below
commit 852e11e4fbaae07d272102f453ea9cfd1684d99d
Author: Amey Jadiye <[email protected]>
AuthorDate: Mon May 25 02:00:39 2020 +0530
Allow java-ea to fail (#72)
---
.travis.yml | 20 +++++++++++---------
1 file changed, 11 insertions(+), 9 deletions(-)
diff --git a/.travis.yml b/.travis.yml
index b1cf9c1..390245c 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -15,15 +15,17 @@
language: java
-jdk:
- - oraclejdk11
- - openjdk8
- - openjdk11
- - openjdk12
- - openjdk13
- - openjdk14
- - openjdk-ea
-
+matrix:
+ include:
+ - jdk: oraclejdk11
+ - jdk: openjdk8
+ - jdk: openjdk11
+ - jdk: openjdk12
+ - jdk: openjdk13
+ - jdk: openjdk14
+ - jdk: openjdk-ea
+ allow_failures:
+ - jdk: openjdk-ea
after_success:
- mvn -B -V clean test jacoco:report coveralls:report -Ptravis-jacoco
\ No newline at end of file