Author: fschumacher
Date: Sun Feb 3 15:05:38 2019
New Revision: 1852839
URL: http://svn.apache.org/viewvc?rev=1852839&view=rev
Log:
Simplify matrix build for travis-ci and add (failing) java EA build
Closes #438
Modified:
jmeter/trunk/.travis.yml
Modified: jmeter/trunk/.travis.yml
URL:
http://svn.apache.org/viewvc/jmeter/trunk/.travis.yml?rev=1852839&r1=1852838&r2=1852839&view=diff
==============================================================================
--- jmeter/trunk/.travis.yml (original)
+++ jmeter/trunk/.travis.yml Sun Feb 3 15:05:38 2019
@@ -14,24 +14,38 @@ before_install:
# skip default "install" command
install: true
+env:
+ global:
+ - ANT_OPTS="-Ddisable-svnCheck=true -Djava.awt.headless=true
-Drmi_force_localhost=true -Dskip.bug52310=true"
+
matrix:
include:
- jdk: oraclejdk8
env: RUN_CHECKSTYLE=true
script: ant -Djava.awt.headless=true checkstyle
- - jdk: oraclejdk8
- script:
- - ant -Ddisable-svnCheck=true -Djava.awt.headless=true
-Drmi_force_localhost=true -Dskip.bug52310=true coverage-travis
+ - name: Coverage on our default build with Oracle Java 8
+ jdk: oraclejdk8
+ script:
+ - ant coverage-travis
after_success:
- bash <(curl -s https://codecov.io/bash)
sudo: true # otherwise TEST_HTTPS.jmx -> analytics.usa.gov does not work
- - jdk: openjdk8
- script:
- - ant -Ddisable-svnCheck=true -Djava.awt.headless=true
-Drmi_force_localhost=true -Dskip.bug52310=true coverage-travis
- - jdk: openjdk11
- script:
- - ant -Ddisable-svnCheck=true -Djava.awt.headless=true
-Drmi_force_localhost=true -Dskip.bug52310=true coverage-travis
+ - name: Tests with OpenJDK 8
+ jdk: openjdk8
+ script:
+ - ant test
+ - name: Tests with OpenJDK 11
+ jdk: openjdk11
+ script:
+ - ant test
+ sudo: true # otherwise TEST_HTTPS.jmx -> analytics.usa.gov does not work
+ - name: Tests with OpenJDK EA
+ jdk: openjdk-ea
+ script:
+ - ant test
sudo: true # otherwise TEST_HTTPS.jmx -> analytics.usa.gov does not work
+ allow_failures:
+ - jdk: openjdk-ea
# 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
# - jdk: oraclejdk9