forked from groonga/groonga
-
Notifications
You must be signed in to change notification settings - Fork 0
413 lines (409 loc) · 13 KB
/
Copy pathlinux.yml
File metadata and controls
413 lines (409 loc) · 13 KB
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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
name: Linux
on:
push:
branches:
- master
- 'maintenance/**'
tags:
- '*'
pull_request:
concurrency:
group: ${{ github.head_ref || github.sha }}-${{ github.workflow }}
cancel-in-progress: true
jobs:
autotools:
name: Autotools
strategy:
fail-fast: false
matrix:
label:
- "GCC"
- "GCC: mruby"
- "GCC: mruby: Apache Arrow RC"
- "Clang: mruby"
include:
- label: "GCC"
id: autotools-gcc
configure-options: >-
CFLAGS=-funsigned-char
CXXFLAGS=-funsigned-char
- label: "GCC: mruby"
id: autotools-gcc-mruby
use-mruby: true
- label: "GCC: mruby: Apache Arrow RC"
id: autotools-gcc-mruby-apache-arrow-rc
use-mruby: true
use-apache-arrow-rc: true
- label: "Clang: mruby"
id: autotools-clang-mruby
use-mruby: true
packages: >-
clang
configure-options: >-
CC=clang
CXX=clang++
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Enable Apache Arrow repository
run: |
sudo apt update -o="APT::Acquire::Retries=3"
sudo apt install -y -V -o="APT::Acquire::Retries=3" \
lsb-release \
wget
if [ "${{ matrix.use-apache-arrow-rc }}" = "true" ]; then
wget https://apache.jfrog.io/artifactory/arrow/$(lsb_release --id --short | tr 'A-Z' 'a-z')-rc/apache-arrow-apt-source-latest-$(lsb_release --codename --short).deb
sudo apt install -y -V ./apache-arrow-apt-source-latest-$(lsb_release --codename --short).deb
sudo sed \
-i"" \
-e "s,^URIs: \\(.*\\)/,URIs: \\1-rc/,g" \
/etc/apt/sources.list.d/apache-arrow.sources
else
wget https://apache.jfrog.io/artifactory/arrow/$(lsb_release --id --short | tr 'A-Z' 'a-z')/apache-arrow-apt-source-latest-$(lsb_release --codename --short).deb
sudo apt install -y -V ./apache-arrow-apt-source-latest-$(lsb_release --codename --short).deb
fi
- name: Install packages
run: |
sudo apt update -o="APT::Acquire::Retries=3"
sudo apt install -y -V -o="APT::Acquire::Retries=3" \
autoconf-archive \
automake1.11 \
autotools-dev \
ccache \
cmake \
gdb \
gettext \
libarrow-dev \
libevent-dev \
libluajit-5.1-dev \
liblz4-dev \
libmecab-dev \
libmsgpack-dev \
libstemmer-dev \
libxxhash-dev \
libzstd-dev \
mecab-naist-jdic \
rapidjson-dev \
ruby-dev \
zlib1g-dev \
${{ matrix.packages }}
if [ "${{ matrix.use-sphinx }}" = "true" ]; then
sudo apt install -y -V -o="APT::Acquire::Retries=3" \
python3-pip
fi
echo "/usr/lib/ccache" >> $GITHUB_PATH
- name: Cache ccache
uses: actions/cache@v3
with:
path: ~/.ccache
key: source-${{ matrix.id }}-ccache-${{ hashFiles('lib/**', 'src/**', 'plugins/**', 'include/**') }}
restore-keys: source-${{ matrix.id }}-ccache-
- name: Install Cutter
run: |
curl \
--silent \
--location \
https://raw.github.com/clear-code/cutter/master/data/travis/setup.sh | sh
- name: Install Sphinx
if: |
matrix.use-sphinx
run: |
sudo pip3 install -U \
Jinja2 \
"Sphinx==5.3.0" \
pydata_sphinx_theme
- name: Install Bundler
run: |
sudo gem install bundler
- name: Generate configure
run: |
./autogen.sh
- name: Configure
run: |
configure_args=()
if [ "${{ matrix.use-mruby }}" = "true" ]; then
configure_args+=(--enable-mruby)
fi
./configure \
--enable-debug \
--prefix=$PWD/install \
--with-ruby \
"${configure_args[@]}" \
${{ matrix.configure-options }}
- name: Build
run: |
make -j$(nproc)
- name: "Test: API"
run: |
bash -x test/unit/run-test.sh
- name: Install test dependencies
run: |
sudo env MAKEFLAGS=-j$(nproc) gem install \
groonga-client \
json \
native-package-installer \
pkg-config
- name: "Test: mruby"
if: |
matrix.use-mruby
run: |
bash -x test/mruby/run-test.sh
- name: Install
run: |
make install
- uses: actions/upload-artifact@v2
with:
name: ${{ matrix.id }}
path: install/
cmake:
name: CMake
strategy:
fail-fast: false
matrix:
label:
- "GCC"
- "Clang"
include:
- label: "GCC"
id: cmake-gcc
cc: gcc
cxx: g++
- label: "Clang"
id: cmake-clang
cc: clang
cxx: clang++
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Enable Apache Arrow repository
run: |
sudo apt update -o="APT::Acquire::Retries=3"
sudo apt install -y -V -o="APT::Acquire::Retries=3" \
lsb-release \
wget
wget https://apache.jfrog.io/artifactory/arrow/$(lsb_release --id --short | tr 'A-Z' 'a-z')/apache-arrow-apt-source-latest-$(lsb_release --codename --short).deb
sudo apt install -y -V ./apache-arrow-apt-source-latest-$(lsb_release --codename --short).deb
- name: Install packages
run: |
sudo apt update -o="APT::Acquire::Retries=3"
sudo apt install -y -V -o="APT::Acquire::Retries=3" \
cmake \
gdb \
gettext \
libarrow-dev \
libevent-dev \
libluajit-5.1-dev \
liblz4-dev \
libmecab-dev \
libmsgpack-dev \
libstemmer-dev \
libxxhash-dev \
libzstd-dev \
mecab-naist-jdic \
ninja-build \
rapidjson-dev \
ruby-dev \
zlib1g-dev
- name: Install Bundler
run: |
sudo gem install bundler
- name: CMake
run: |
export CC=${{ matrix.cc }}
export CXX=${{ matrix.cxx }}
cmake \
-B ../groonga.build \
-S . \
-GNinja \
-DCMAKE_INSTALL_PREFIX=$PWD/install \
-DCMAKE_BUILD_TYPE=Debug \
-DGRN_ALLOW_WARNING=OFF \
-DGRN_WITH_APACHE_ARROW=yes \
-DGRN_WITH_MRUBY=yes
- name: Build
run: |
ninja -C ../groonga.build
- name: Install
run: |
ninja -C ../groonga.build install
- uses: actions/upload-artifact@v3
with:
name: ${{ matrix.id }}
path: install/
test:
name: Test
needs:
- autotools
- cmake
strategy:
fail-fast: false
matrix:
label:
- "Autotools: GCC"
- "Autotools: GCC: mruby"
- "Autotools: GCC: mruby: optimize"
- "Autotools: GCC: mruby: Apache Arrow RC"
- "Autotools: Clang: mruby"
- "CMake: GCC"
- "CMake: Clang"
include:
- label: "Autotools: GCC"
id: autotools-gcc
- label: "Autotools: GCC: mruby"
id: autotools-gcc-mruby
- label: "Autotools: GCC: mruby: optimize"
id: autotools-gcc-mruby
optimize: true
- label: "Autotools: GCC: mruby: Apache Arrow RC"
id: autotools-gcc-mruby-apache-arrow-rc
use-apache-arrow-rc: true
- label: "Autotools: Clang: mruby"
id: autotools-clang-mruby
- label: "CMake: GCC"
id: cmake-gcc
- label: "CMake: Clang"
id: cmake-clang
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- uses: actions/download-artifact@v3
with:
name: ${{ matrix.id }}
path: install/
- name: Set executable bit
run: |
chmod +x install/bin/*
- name: Enable Apache Arrow repository
run: |
sudo apt update -o="APT::Acquire::Retries=3"
sudo apt install -y -V -o="APT::Acquire::Retries=3" \
lsb-release \
wget
if [ "${{ matrix.use-apache-arrow-rc }}" = "true" ]; then
wget https://apache.jfrog.io/artifactory/arrow/$(lsb_release --id --short | tr 'A-Z' 'a-z')-rc/apache-arrow-apt-source-latest-$(lsb_release --codename --short).deb
sudo apt install -y -V ./apache-arrow-apt-source-latest-$(lsb_release --codename --short).deb
sudo sed \
-i"" \
-e "s,^URIs: \\(.*\\)/,URIs: \\1-rc/,g" \
/etc/apt/sources.list.d/apache-arrow.sources
else
wget https://apache.jfrog.io/artifactory/arrow/$(lsb_release --id --short | tr 'A-Z' 'a-z')/apache-arrow-apt-source-latest-$(lsb_release --codename --short).deb
sudo apt install -y -V ./apache-arrow-apt-source-latest-$(lsb_release --codename --short).deb
fi
sudo apt update -o="APT::Acquire::Retries=3"
- name: Install test dependencies
run: |
sudo env MAKEFLAGS=-j$(nproc) gem install \
grntest \
pkg-config \
red-arrow
# No -dev version is OK but specifying shared object version
# in package name bothers us...
sudo apt install -y -V -o="APT::Acquire::Retries=3" \
libevent-dev \
libluajit-5.1-dev \
liblz4-dev \
libmecab-dev \
libmsgpack-dev \
libstemmer-dev \
libxxhash-dev \
libzstd-dev \
mecab-naist-jdic \
zlib1g-dev
- name: Set environment variables
run: |
echo "COLUMNS=79" >> ${GITHUB_ENV}
if [ "${{ matrix.optimize }}" = "true" ]; then
echo "GRN_EXPR_OPTIMIZE=yes" >> ${GITHUB_ENV}
fi
echo "LD_LIBRARY_PATH=$PWD/install/lib" >> ${GITHUB_ENV}
echo "TZ=Asia/Tokyo" >> ${GITHUB_ENV}
echo "$PWD/install/bin" >> ${GITHUB_PATH}
- uses: actions/cache@v3
with:
path: |
~/.cache/red-datasets
key: red-datasets-ubuntu
- name: "Test: command line"
run: |
if type grndb; then
test/command_line/run-test.rb --groonga-install-prefix=$PWD/install
fi
- name: "Test: stdio"
run: |
grntest \
--base-dir test/command \
--n-retries=3 \
--read-timeout=30 \
--reporter=mark \
test/command/suite
- name: "Test: stdio: n_workers"
run: |
export GRN_SELECT_N_WORKERS_DEFAULT=-1
grntest \
--base-dir test/command \
--n-retries=3 \
--read-timeout=30 \
--reporter=mark \
test/command/suite
- name: "Test: HTTP: load: Apache Arrow"
run: |
grntest \
--base-dir test/command \
--n-retries=3 \
--read-timeout=30 \
--reporter=mark \
--input-type=apache-arrow \
--interface=http \
test/command/suite
- name: "Test: HTTP: command: POST"
run: |
grntest \
--base-dir test/command \
--n-retries=3 \
--read-timeout=30 \
--reporter=mark \
--input-type=apache-arrow \
--interface=http \
--use-http-post \
test/command/suite
- name: "Test: HTTP: command: chunked"
run: |
grntest \
--base-dir test/command \
--n-retries=3 \
--timeout=10 \
--read-timeout=30 \
--reporter=mark \
--input-type=apache-arrow \
--interface=http \
--use-http-chunked \
test/command/suite
- name: "Test: HTTP: groonga-httpd"
run: |
if type groonga-httpd; then
mkdir -p $PWD/install/var/log/groonga/httpd/
grntest \
--base-dir test/command \
--n-retries=3 \
--read-timeout=30 \
--reporter=mark \
--testee groonga-httpd \
test/command/suite
fi
- name: "Test: HTTP: reference count"
run: |
export GRN_ENABLE_REFERENCE_COUNT=yes
grntest \
--base-dir test/command \
--n-retries=3 \
--read-timeout=30 \
--reporter=mark \
--interface=http \
test/command/suite