forked from elastic/elasticsearch-rails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
35 lines (26 loc) · 838 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# -----------------------------------------------------------------------------
# Configuration file for http://travis-ci.org/elasticsearch/elasticsearch-rails
# -----------------------------------------------------------------------------
language: ruby
branches:
only:
- master
- travis
rvm:
- 1.9.3
- 2.1
- 2.2
jdk:
- openjdk7
services:
- mongodb
before_script:
- ls -la /usr/share/elasticsearch/bin/elasticsearch
- echo $PWD
- rake bundle:clean
- rake bundle:install
script:
- SERVER=launch TEST_CLUSTER_COMMAND=/usr/share/elasticsearch/bin/elasticsearch TEST_CLUSTER_PARAMS='-Des.default.path.conf=/etc/elasticsearch/ -Des.default.path.logs==/var/log/elasticsearch/' bundle exec rake test:all
install: "gem uninstall bundler -axI && gem install bundler -v 1.6.2"
notifications:
disable: true