We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0272b75 commit 7fc6388Copy full SHA for 7fc6388
.travis.yml
@@ -33,9 +33,11 @@ before_install:
33
tar zxf elasticsearch-2.2.1.tar.gz
34
elasticsearch-2.2.1/bin/elasticsearch -d -Dhttp.port=9200
35
else
36
- wget https://download.elastic.co/elasticsearch/elasticsearch/elasticsearch-1.7.5.tar.gz
37
- tar zxf elasticsearch-1.7.5.tar.gz
38
- elasticsearch-1.7.5/bin/elasticsearch -d -Dhttp.port=9200
+ wget -qO - https://packages.elastic.co/GPG-KEY-elasticsearch | sudo apt-key add -
+ echo "deb http://packages.elastic.co/elasticsearch/1.7/debian stable main" | sudo tee -a /etc/apt/sources.list.d/elasticsearch-1.7.list
+ sudo apt-get update
39
+ sudo apt-get -y install elasticsearch
40
+ sudo service elasticsearch restart
41
fi
42
43
install:
0 commit comments