You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by fs...@apache.org on 2018/07/04 04:54:58 UTC

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

Author: fschumacher
Date: Wed Jul  4 04:54:58 2018
New Revision: 1835041

URL: http://svn.apache.org/viewvc?rev=1835041&view=rev
Log:
Only do coverage testing on jdk 8 (as 10 seems to be problematic)

Modified:
    jmeter/trunk/.travis.yml

Modified: jmeter/trunk/.travis.yml
URL: http://svn.apache.org/viewvc/jmeter/trunk/.travis.yml?rev=1835041&r1=1835040&r2=1835041&view=diff
==============================================================================
--- jmeter/trunk/.travis.yml (original)
+++ jmeter/trunk/.travis.yml Wed Jul  4 04:54:58 2018
@@ -22,10 +22,12 @@ matrix:
     - jdk: oraclejdk8
       script: 
           - ant -Ddisable-svnCheck=true -Djava.awt.headless=true -Drmi_force_localhost=true -Dskip.bug52310=true coverage-travis
+      after_success:
+          - bash <(curl -s https://codecov.io/bash)
       sudo: true # otherwise TEST_HTTPS.jmx -> analytics.usa.gov does not work
     - jdk: oraclejdk11
       script: 
-          - ant -Ddisable-svnCheck=true -Djava.awt.headless=true -Drmi_force_localhost=true -Dskip.bug52310=true coverage-travis
+          - ant -Ddisable-svnCheck=true -Djava.awt.headless=true -Drmi_force_localhost=true -Dskip.bug52310=true
       sudo: true # otherwise TEST_HTTPS.jmx -> analytics.usa.gov does not work
 # disable building with jdk9 as it has a bug and will not compile JMeter
 # see https://bugs.java.com/bugdatabase/view_bug.do?bug_id=8193802
@@ -33,5 +35,3 @@ matrix:
 #      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)