forked from groonga/groonga
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
66 lines (58 loc) · 1.11 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
notifications:
webhooks:
- https://webhook.commit-email.info/
language: cpp
dist: focal
cache:
- ccache
addons_linux_build: &addons_linux_build
apt:
packages:
- apt-transport-https
- autoconf-archive
- automake1.11
- autotools-dev
- cmake
- gdb
- gnupg
- libevent-dev
- libluajit-5.1-dev
- libmecab-dev
- libmsgpack-dev
- libxxhash-dev
- lsb-release
- mecab-naist-jdic
- rapidjson-dev
- wget
- zlib1g-dev
matrix:
include:
- name: "CMake"
os: linux
compiler: gcc
addons:
<<: *addons_linux_build
env:
- BUILD_TOOL=cmake
- name: "CMake: mruby"
os: linux
compiler: gcc
addons:
<<: *addons_linux_build
env:
- BUILD_TOOL=cmake
- ENABLE_MRUBY=yes
- name: "CMake: clang"
os: linux
compiler: clang
addons:
<<: *addons_linux_build
env:
- BUILD_TOOL=cmake
- ENABLE_MRUBY=yes
install:
- travis/install.sh
before_script:
- travis/before-script.sh
script:
- travis/script.sh