forked from ankane/searchkick
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
44 lines (44 loc) · 1.08 KB
/
.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
40
41
42
43
44
dist: xenial
language: ruby
rvm: 2.5.3
gemfile:
- Gemfile
services:
- postgresql
- redis-server
script: bundle exec rake test
before_install:
- psql -c 'CREATE DATABASE searchkick_test;' -U postgres || true
- ./test/ci/install_elasticsearch.sh
cache:
directories:
- $HOME/elasticsearch
env:
- ELASTICSEARCH_VERSION=6.6.0
jdk: openjdk10
matrix:
include:
- gemfile: Gemfile
- gemfile: test/gemfiles/activerecord51.gemfile
env: ELASTICSEARCH_VERSION=6.0.0
- gemfile: test/gemfiles/activerecord50.gemfile
env: ELASTICSEARCH_VERSION=5.6.10
- gemfile: test/gemfiles/activerecord42.gemfile
env: ELASTICSEARCH_VERSION=5.0.1
- gemfile: test/gemfiles/mongoid6.gemfile
services:
- mongodb
- redis-server
- gemfile: test/gemfiles/mongoid5.gemfile
services:
- mongodb
- redis-server
- gemfile: Gemfile
env: ELASTICSEARCH_VERSION=7.0.0-alpha1
allow_failures:
- gemfile: Gemfile
env: ELASTICSEARCH_VERSION=7.0.0-alpha1
notifications:
email:
on_success: never
on_failure: change