forked from ankane/searchkick
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
39 lines (39 loc) · 903 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
36
37
38
39
sudo: false
language: ruby
rvm: 2.3.1
services:
- mongodb
- redis-server
before_install:
- ./test/ci/before_install.sh
script: bundle exec rake test
before_script:
- psql -c 'create database searchkick_test;' -U postgres
notifications:
email:
on_success: never
on_failure: change
gemfile:
- Gemfile
- test/gemfiles/activerecord50.gemfile
- test/gemfiles/activerecord42.gemfile
- test/gemfiles/mongoid5.gemfile
- test/gemfiles/mongoid6.gemfile
env:
- ELASTICSEARCH_VERSION=5.5.0
jdk: oraclejdk8
matrix:
include:
- gemfile: Gemfile
env: ELASTICSEARCH_VERSION=2.0.0
jdk: oraclejdk7
- gemfile: Gemfile
env: ELASTICSEARCH_VERSION=2.4.3
jdk: oraclejdk7
- gemfile: Gemfile
env: ELASTICSEARCH_VERSION=5.0.1
jdk: oraclejdk8
allow_failures:
- gemfile: Gemfile
env: ELASTICSEARCH_VERSION=6.0.0-beta1
jdk: oraclejdk8