forked from ranguba/rroonga
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
41 lines (41 loc) · 968 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
40
41
sudo: required
notifications:
webhooks:
- https://webhook.commit-email.info/
# env:
# - GROONGA_MASTER=yes
matrix:
include:
- name: "Ruby 2.4"
rvm: 2.4
- name: "Ruby 2.5"
rvm: 2.5
- name: "Ruby 2.6"
rvm: 2.6
- name: "Ruby 2.7"
rvm: 2.7
- name: "Ruby 2.7 with Groonga master"
rvm: 2.7
env:
- GROONGA_MASTER=yes
- name: "Auto Groonga build"
rvm: 2.7
env:
- INSTALL_GROONGA=no
addons:
apt:
packages:
- libmecab-dev
- libmsgpack-dev
- mecab-naist-jdic
before_install:
- |
if [ "${INSTALL_GROONGA}" != "no" ]; then
curl --silent --location https://github.com/groonga/groonga/raw/master/data/travis/setup.sh | sh
if [ "${GROONGA_MASTER}" != "yes" ]; then
sudo apt-get -qq -y install groonga-tokenizer-mecab
fi
fi
- gem update bundler
after_failure:
- cat ext/groonga/mkmf.log