From 92bed791445eab22acc0aa20205defd2d63ad147 Mon Sep 17 00:00:00 2001 From: Filip Hrisafov Date: Sat, 9 Mar 2019 20:05:41 +0100 Subject: [PATCH] Fix .travis.yml --- .travis.yml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/.travis.yml b/.travis.yml index f9e1963f9..8bafb838f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,19 +6,19 @@ after_success: matrix: include: - - jdk: oraclejdk8 - - jdk: openjdk11 - # Only run the processor and its dependencies - # The integration tests are using the maven toolchain and that is not yet ready for Java 11 - # There is an issue with the documentation so skip it - script: mvn -B -V clean install -pl processor -am - # Only run the processor and its dependencies - # The integration tests are using the maven toolchain and that is not yet ready for Java EA - # There is an issue with the documentation so skip it + - jdk: oraclejdk8 + - jdk: openjdk11 + # Only run the processor and its dependencies + # The integration tests are using the maven toolchain and that is not yet ready for Java 11 + # There is an issue with the documentation so skip it + script: mvn -B -V clean install -pl processor -am + # Only run the processor and its dependencies + # The integration tests are using the maven toolchain and that is not yet ready for Java EA + # There is an issue with the documentation so skip it + - jdk: openjdk-ea + script: mvn -B -V clean install -pl processor -am + allow_failures: - jdk: openjdk-ea - script: mvn -B -V clean install -pl processor -am - allow_failures: - - jdk: openjdk-ea deploy: provider: script script: "test ${TRAVIS_TEST_RESULT} -eq 0 && mvn -s etc/travis-settings.xml -DskipTests=true deploy"