forked from universal-ctags/ctags
-
Notifications
You must be signed in to change notification settings - Fork 0
/
circle.yml
488 lines (475 loc) · 15.6 KB
/
circle.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
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
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
version: 2
jobs:
#
# This is for the latest RELEASED Fedora.
# Update the version of Fedora when new version is released.
# We don't use row hide, the development version of Fedora
# till the list of TODO items of u-ctags becomes nil.
#
# We assume GNU Make is available.
#
fedora33_gmake:
working_directory: ~/universal-ctags
docker:
- image: docker.io/fedora:33
steps:
- run:
name: Install Git
command: |
yum -y install git gdb
- checkout
- run:
name: Install build tools
command: |
dnf -y install gcc automake autoconf pkgconfig make libseccomp-devel libxml2-devel jansson-devel libyaml-devel findutils diffutils sudo
dnf -y install jq puppet python3-sphinx
- run:
name: Build
command: |
bash ./autogen.sh
./configure --enable-debugging
make -j 2
- run:
name: Test
command: |
make check CIRCLECI=1
- run:
name: Make HTML documents
command: |
cd docs
make html
fedora33_gmake_roundtrip:
working_directory: ~/universal-ctags
docker:
- image: docker.io/fedora:33
steps:
- run:
name: Install Git
command: |
yum -y install git gdb
- checkout
- run:
name: Install build tools
command: |
dnf -y install gcc automake autoconf pkgconfig make libseccomp-devel libxml2-devel jansson-devel libyaml-devel findutils diffutils sudo
dnf -y install jq puppet
- run:
name: Build
command: |
bash ./autogen.sh
./configure --enable-debugging
make -j 2
- run:
name: Test
command: |
make roundtrip CIRCLECI=1 ROUNDTRIP_MAX_ENTRIES=25
#
# On Fedora 31 bmake package cannot be installed because a package
# required by bmake is not available. More inspection is needed.
# Fedora 30 is the last version where bmake can be installed.
#
# Though we use GNU make extension aggressively in man/Makefile,
# we can still build ctags with bmake. The man/Makefile is for
# generating man pages and associated html files without using
# autotools. Makefile generated by autotools converts .rst.in files
# to .rst files. It injects proper name of ctags executable.
# man/Makefile doesn't do so.
#
fedora30_bmake:
working_directory: ~/universal-ctags
docker:
- image: docker.io/fedora:30
steps:
- run:
name: Install Git and Gdb
command: |
dnf -y install git gdb
- checkout
- run:
name: Install build tools
command: |
dnf -y install gcc automake autoconf pkgconfig bmake libseccomp-devel libxml2-devel jansson-devel libyaml-devel findutils sudo
dnf -y install jq puppet
- run:
name: Build
command: |
bash ./autogen.sh
MAKE=bmake ./configure --enable-debugging
bmake -j 2
- run:
name: Test
command: |
MAKE=bmake bmake validate-input check codecheck CIRCLECI=1
fedora30_bmake_roundtrip:
working_directory: ~/universal-ctags
docker:
- image: docker.io/fedora:30
steps:
- run:
name: Install Git and Gdb
command: |
dnf -y install git gdb
- checkout
- run:
name: Install build tools
command: |
dnf -y install gcc automake autoconf pkgconfig bmake libseccomp-devel libxml2-devel jansson-devel libyaml-devel findutils sudo
dnf -y install jq puppet
- run:
name: Build
command: |
bash ./autogen.sh
MAKE=bmake ./configure --enable-debugging
bmake -j 2
- run:
name: Test
command: |
MAKE=bmake bmake roundtrip CIRCLECI=1 ROUNDTRIP_MAX_ENTRIES=25
fedora33_distcheck:
working_directory: ~/universal-ctags
docker:
- image: docker.io/fedora:33
steps:
- run:
name: Install Git and Gdb
command: |
dnf -y install git gdb
- checkout
- run:
name: Install build tools
command: |
dnf -y install gcc automake autoconf pkgconfig make libseccomp-devel libxml2-devel jansson-devel libyaml-devel findutils diffutils sudo
dnf -y install jq puppet
- run:
name: Run autogen.sh
command: |
bash ./autogen.sh
- run:
name: verify optlib files are updated
command: |
if ! git diff --exit-code optlib; then
echo "Files under optlib are not up to date."
echo "If you change optlib/foo.ctags, don't forget to add optlib/foo.c to your commit."
exit 1
else
exit 0
fi
- run:
name: verify man pages in docs directory are updated
command: |
make -B -C man QUICK=1 update-docs
if ! git diff --exit-code docs/man; then
echo "Files under docs/man/ are not up to date."
echo "Please execute 'make -C man QUICK=1 update-docs' and commit them."
exit 1
else
exit 0
fi
- run:
name: Run configure
command: |
./configure
- run:
name: Test
command: |
make distcheck
centos_make:
working_directory: ~/universal-ctags
docker:
- image: docker.io/centos:latest
steps:
- run:
name: Install Git
command: |
yum -y install git
- checkout
- run:
name: Install build tools
command: |
yum -y --enablerepo=powertools install python3 gcc automake autoconf pkgconfig make libxml2-devel jansson-devel libyaml-devel findutils diffutils sudo
- run:
name: Build
command: |
bash ./autogen.sh
./configure --enable-debugging
make -j 2
- run:
name: Test
command: |
make check CIRCLECI=1
centos_make_roundtrip:
working_directory: ~/universal-ctags
docker:
- image: docker.io/centos:latest
steps:
- run:
name: Install Git
command: |
yum -y install git
- checkout
- run:
name: Install build tools
command: |
yum -y --enablerepo=powertools install python3 gcc automake autoconf pkgconfig make libxml2-devel jansson-devel libyaml-devel findutils diffutils sudo
- run:
name: Build
command: |
bash ./autogen.sh
./configure --enable-debugging
make -j 2
- run:
name: Test
command: |
make roundtrip CIRCLECI=1 ROUNDTRIP_MAX_ENTRIES=25
centos7_make:
working_directory: ~/universal-ctags
docker:
- image: docker.io/centos:7
steps:
- run:
name: Install Git
command: |
yum -y install git
- checkout
- run:
name: Install build tools
command: |
yum -y install python3 gcc automake autoconf pkgconfig make libxml2-devel jansson-devel libyaml-devel findutils diffutils sudo
- run:
name: Build
command: |
bash ./autogen.sh
./configure --enable-debugging
make -j 2
- run:
name: Test
command: |
make check CIRCLECI=1
centos7_make_roundtrip:
working_directory: ~/universal-ctags
docker:
- image: docker.io/centos:7
steps:
- run:
name: Install Git
command: |
yum -y install git
- checkout
- run:
name: Install build tools
command: |
yum -y install gcc automake autoconf pkgconfig make libxml2-devel jansson-devel libyaml-devel findutils diffutils sudo
- run:
name: Build
command: |
bash ./autogen.sh
./configure --enable-debugging
make -j 2
- run:
name: Test
command: |
make roundtrip CIRCLECI=1 ROUNDTRIP_MAX_ENTRIES=25
ubuntu20_mingw:
working_directory: ~/universal-ctags
docker:
- image: docker.io/ubuntu:20.04
steps:
- run:
name: Install git
command: |
export DEBIAN_FRONTEND=noninteractive
apt-get -y update
apt-get -y install git
- checkout
- run:
name: Install build tools
command: |
export DEBIAN_FRONTEND=noninteractive
apt-get -o APT::Immediate-Configure=false -y install \
binutils-mingw-w64-i686 gcc-mingw-w64-i686 make gcc
- run:
name: Build
command: |
make -j2 CC=i686-w64-mingw32-gcc WINDRES=i686-w64-mingw32-windres CC_FOR_PACKCC=gcc -f mk_mingw.mak
ubuntu20_32bit:
working_directory: ~/universal-ctags
docker:
- image: docker.io/ubuntu:20.04
steps:
- run:
name: Install git
command: |
export DEBIAN_FRONTEND=noninteractive
dpkg --add-architecture i386
apt-get -y update
apt-get -y install git
- checkout
- run:
name: Install build tools
# APT::Immediate-Configure=false is taken from
# https://superuser.com/questions/199582/apt-error-could-not-perform-immediate-configuration-on
# I don't understand why I need this.
# -- Masatake
command: |
export DEBIAN_FRONTEND=noninteractive
apt-get -o APT::Immediate-Configure=false -y install \
pkg-config autoconf automake make gcc \
libjansson-dev:i386 libyaml-dev:i386 libseccomp-dev:i386 libxml2-dev:i386 \
gdb valgrind \
python3-docutils \
libc6-dev-i386 libc6-dbg:i386
- run:
name: Build
command: |
bash ./autogen.sh
CC='gcc -m32' ./configure --enable-debugging
make -j 2
- run:
name: Test
command: |
# make check roundtrip CIRCLECI=1
make units CIRCLECI=1 CATEGORIES=parser-varlink
fedora33_cross_aarch64:
working_directory: ~/universal-ctags
docker:
- image: docker.io/library/fedora:33
steps:
- run:
name: Install tools
command: |
dnf -y install git gcc autoconf automake make file
- run:
name: Prepare repo file for install cross compiler
command: |
curl -o /etc/yum.repos.d/lantw44-aarch64-linux-gnu-toolchain-fedora-33.repo https://copr.fedorainfracloud.org/coprs/lantw44/aarch64-linux-gnu-toolchain/repo/fedora-33/lantw44-aarch64-linux-gnu-toolchain-fedora-33.repo
- run:
name: Install the cross compiler for aarch64
command: |
dnf -y install aarch64-linux-gnu-binutils aarch64-linux-gnu-gcc aarch64-linux-gnu-glibc
- checkout
- run:
name: Build ctags for aarch64
command: |
bash ./autogen.sh
mkdir out
./configure --host=aarch64-linux-gnu \
--prefix=`pwd`/out \
--enable-static \
--disable-seccomp \
CC=/usr/bin/aarch64-linux-gnu-gcc \
CPP=/usr/bin/aarch64-linux-gnu-cpp \
AR=/usr/bin/aarch64-linux-gnu-gcc-ar \
RANLIB=/usr/bin/aarch64-linux-gnu-gcc-ranlib \
CC_FOR_BUILD=/usr/bin/gcc
make -j 2
- run:
name: Install locally
command: |
make install
- run:
name: Test
command: |
test -f out/bin/ctags && ( file out/bin/ctags | grep -q 'ARM aarch64' )
centos6:
working_directory: ~/universal-ctags
docker:
- image: centos:6.10
steps:
- run:
name: Rearrange CentOS-Base.repo file
command: |
sed -i 's|#baseurl=|baseurl=|g' /etc/yum.repos.d/CentOS-Base.repo
sed -i 's|mirrorlist=|#mirrorlist=|g' /etc/yum.repos.d/CentOS-Base.repo
sed -i 's|mirror|vault|g' /etc/yum.repos.d/CentOS-Base.repo
sed -i 's|http:|https:|g' /etc/yum.repos.d/CentOS-Base.repo
- run:
name: Install tools for building
command: |
yum install -y git gcc make autoconf automake pkgconfig
yum install -y https://repo.ius.io/ius-release-el6.rpm
yum --enablerepo=ius-archive -y install python36
ln -s /usr/bin/python36 /usr/bin/python3
- run:
name: Get the source code of u-ctags
command: |
git clone https://github.com/universal-ctags/ctags
- run:
name: Build
command: |
cd ctags
bash ./autogen.sh
./configure --enable-debugging
make -j 2
- run:
name: Test
command: |
cd ctags
make check CIRCLECI=1
centos6_roundtrip:
working_directory: ~/universal-ctags
docker:
- image: centos:6.10
steps:
- run:
name: Rearrange CentOS-Base.repo file
command: |
sed -i 's|#baseurl=|baseurl=|g' /etc/yum.repos.d/CentOS-Base.repo
sed -i 's|mirrorlist=|#mirrorlist=|g' /etc/yum.repos.d/CentOS-Base.repo
sed -i 's|mirror|vault|g' /etc/yum.repos.d/CentOS-Base.repo
sed -i 's|http:|https:|g' /etc/yum.repos.d/CentOS-Base.repo
- run:
name: Install tools for building
command: |
yum install -y git gcc make autoconf automake pkgconfig
yum install -y https://repo.ius.io/ius-release-el6.rpm
yum --enablerepo=ius-archive -y install python36
ln -s /usr/bin/python36 /usr/bin/python3
- run:
name: Get the source code of u-ctags
command: |
git clone https://github.com/universal-ctags/ctags
- run:
name: Build
command: |
cd ctags
bash ./autogen.sh
./configure --enable-debugging
make -j 2
- run:
name: Test
command: |
cd ctags
make roundtrip CIRCLECI=1 ROUNDTRIP_MAX_ENTRIES=25
THIS_WILL_BE_FAILED_fedora34_CANARY:
working_directory: ~/universal-ctags
docker:
- image: docker.io/fedora:34
steps:
- checkout
- run:
name: Install build tools
command: |
dnf -y install gcc automake autoconf pkgconfig make
- run:
name: Run autogen.sh
command: |
bash ./autogen.sh
workflows:
version: 2
build_and_test:
jobs:
- ubuntu20_32bit
- fedora30_bmake
- fedora33_distcheck
- centos_make
- fedora33_gmake
- fedora33_cross_aarch64
- centos7_make
- centos6
- ubuntu20_mingw
- centos_make_roundtrip
- fedora30_bmake_roundtrip
- fedora33_gmake_roundtrip
- centos7_make_roundtrip
- centos6_roundtrip
- THIS_WILL_BE_FAILED_fedora34_CANARY