You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by pm...@apache.org on 2018/06/03 14:00:22 UTC

svn commit: r1832771 - /jmeter/trunk/.travis.yml

Author: pmouawad
Date: Sun Jun  3 14:00:22 2018
New Revision: 1832771

URL: http://svn.apache.org/viewvc?rev=1832771&view=rev
Log:
JDK11 won't compile due to JavaFX move to a module.

So now test running on JDK10 , JDK11

Modified:
    jmeter/trunk/.travis.yml

Modified: jmeter/trunk/.travis.yml
URL: http://svn.apache.org/viewvc/jmeter/trunk/.travis.yml?rev=1832771&r1=1832770&r2=1832771&view=diff
==============================================================================
--- jmeter/trunk/.travis.yml (original)
+++ jmeter/trunk/.travis.yml Sun Jun  3 14:00:22 2018
@@ -23,15 +23,14 @@ matrix:
     - jdk: oraclejdk8
       script: 
           - ant -Ddisable-svnCheck=true -Djava.awt.headless=true -Drmi_force_localhost=true -Dskip.bug52310=true coverage-travis
-          - jdk_switcher use oraclejdk9
+          - jdk_switcher use oraclejdk10
+          - ant -Ddisable-svnCheck=true -Djava.awt.headless=true -Drmi_force_localhost=true -Dskip.bug52310=true coverage-travis
+          - jdk_switcher use oraclejdk11
           - ant -Ddisable-svnCheck=true -Djava.awt.headless=true -Drmi_force_localhost=true -Dskip.bug52310=true coverage-travis
       sudo: true # otherwise TEST_HTTPS.jmx -> analytics.usa.gov does not work
 # No building with JDK9 nor JDK10 as it has a bug and will not compile JMeter
 # see https://bugs.java.com/bugdatabase/view_bug.do?bug_id=8193802
 #
-    - jdk: oraclejdk11
-      script: ant -Djava.awt.headless=true -Drmi_force_localhost=true -Dskip.bug52310=true test
-      sudo: true # otherwise TEST_HTTPS.jmx -> analytics.usa.gov does not work
 
 after_success:
     - bash <(curl -s https://codecov.io/bash)