From 3e1dd08a0ab4a58295f907dde5aa7546a3158f29 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Honza=20Kr=C3=A1l?= Date: Fri, 10 Jun 2016 15:01:50 +0200 Subject: [PATCH] Fix travis CI for 5.0.0 SNAPSHOT --- .travis.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 3fdc5fc4..4e213914 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,6 +7,7 @@ python: - "2.7" - "3.3" - "3.4" + - "3.5" env: # different connection classes to test @@ -14,9 +15,10 @@ env: - TEST_ES_CONNECTION=RequestsHttpConnection install: - - mkdir /tmp/elasticsearch - - wget -O - http://s3-eu-west-1.amazonaws.com/build.eu-west-1.elastic.co/origin/2.0/nightly/JDK7/elasticsearch-latest-SNAPSHOT.tar.gz | tar xz --directory=/tmp/elasticsearch --strip-components=1 - - /tmp/elasticsearch/bin/elasticsearch -d --path.data /tmp --discovery.zen.ping.multicast.enabled false --script.inline on --script.indexed on --path.repo=/tmp --repositories.url.allowed_urls='http://*' --node.testattr=test + - wget -O /tmp/es-snap.zip "https://oss.sonatype.org/service/local/artifact/maven/redirect?r=snapshots&g=org.elasticsearch.distribution.zip&a=elasticsearch&e=zip&v=5.0.0-SNAPSHOT" + - unzip /tmp/es-snap.zip -d /tmp/ + - mv /tmp/elasticsearch-5.0.0-SNAPSHOT /tmp/elasticsearch + - /tmp/elasticsearch/bin/elasticsearch -E script.inline=true -E path.repo=/tmp -E repositories.url.allowed_urls='http://*' -E node.attr.testattr=test - git clone https://github.com/elastic/elasticsearch.git ../elasticsearch - pip install .