forked from groonga/groonga
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
150 lines (139 loc) · 2.91 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
notifications:
webhooks:
- https://webhook.commit-email.info/
language: cpp
dist: xenial
services:
- docker
cache:
- ccache
addons_linux_build: &addons_linux_build
apt:
packages:
- autoconf-archive
- automake1.11
- autotools-dev
- cmake
- gdb
- libevent-dev
- libluajit-5.1-dev
- libmecab-dev
- libmsgpack-dev
- mecab-naist-jdic
- rapidjson-dev
- zlib1g-dev
addons_macos_build: &addons_macos_build
homebrew:
brewfile: true
addons_linux_docker: &addons_linux_docker
apt:
packages:
- autotools-dev
- autoconf-archive
matrix:
include:
- name: "Autotools"
os: linux
compiler: gcc
addons:
<<: *addons_linux_build
env:
- BUILD_TOOL=autotools
- CFLAGS=-funsigned-char
- CXXFLAGS=-funsigned-char
- name: "Autotools: mruby"
os: linux
compiler: gcc
addons:
<<: *addons_linux_build
env:
- BUILD_TOOL=autotools
- ENABLE_MRUBY=yes
- name: "Autotools: mruby: optimize"
os: linux
compiler: gcc
addons:
<<: *addons_linux_build
env:
- BUILD_TOOL=autotools
- ENABLE_MRUBY=yes
- GRN_EXPR_OPTIMIZE=yes
- name: "Autotools: clang"
os: linux
compiler: clang
addons:
<<: *addons_linux_build
env:
- BUILD_TOOL=autotools
- ENABLE_MRUBY=yes
- 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
- name: "Autotools: macOS"
os: osx
osx_image: xcode10.2
addons:
<<: *addons_macos_build
env:
- BUILD_TOOL=autotools
- ENABLE_MRUBY=yes
- name: "CMake: macOS"
os: osx
osx_image: xcode10.2
addons:
<<: *addons_macos_build
env:
- BUILD_TOOL=cmake
- ENABLE_MRUBY=yes
- name: "Ubuntu 16.04"
os: linux
addons:
<<: *addons_linux_docker
env:
- DOCKER=ubuntu-16.04
- name: "Ubuntu 18.04"
os: linux
addons:
<<: *addons_linux_docker
env:
- DOCKER=ubuntu-18.04
- name: "MinGW32"
os: linux
addons:
<<: *addons_linux_build
env:
- TARGET=windows
- ARCHITECTURES=x86
- name: "MinGW64"
os: linux
addons:
<<: *addons_linux_build
env:
- TARGET=windows
- ARCHITECTURES=x64
install:
- travis/install.sh
before_script:
- travis/before-script.sh
script:
- travis/script.sh