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 2017/10/23 12:15:38 UTC

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

Author: pmouawad
Date: Mon Oct 23 12:15:38 2017
New Revision: 1813011

URL: http://svn.apache.org/viewvc?rev=1813011&view=rev
Log:
Try to fix travis ci failure with Java 9
Use latest ant 1.10.1

Modified:
    jmeter/trunk/.travis.yml

Modified: jmeter/trunk/.travis.yml
URL: http://svn.apache.org/viewvc/jmeter/trunk/.travis.yml?rev=1813011&r1=1813010&r2=1813011&view=diff
==============================================================================
--- jmeter/trunk/.travis.yml (original)
+++ jmeter/trunk/.travis.yml Mon Oct 23 12:15:38 2017
@@ -5,6 +5,12 @@ before_script:
   - test "x$RUN_CHECKSTYLE" != 'x' || ant -Djava.awt.headless=true download_jars install
   - test "x$RUN_CHECKSTYLE" != 'xtrue' || ant -Djava.awt.headless=true download_checkstyle
 
+before_install:
+    - wget --no-check-certificate https://www.apache.org/dist/ant/binaries/apache-ant-1.10.1-bin.tar.gz
+    - tar -xzvf apache-ant-1.10.1-bin.tar.gz
+    - export PATH=`pwd`/apache-ant-1.10.1/bin:$PATH
+    - echo $(ant -version)
+
 # skip default "install" command
 install: true