forked from universal-ctags/ctags
-
Notifications
You must be signed in to change notification settings - Fork 0
/
circle.yml
382 lines (372 loc) · 11.8 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
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.
#
fedora34_gmake:
working_directory: ~/universal-ctags
docker:
- image: docker.io/fedora:34
steps:
- run:
name: Install Git, Gdb and Procps-NG
command: |
yum -y install git gdb procps-ng
- checkout
- run:
name: Install build tools
command: |
dnf -y install gcc automake autoconf pkgconfig make libseccomp-devel libxml2-devel jansson-devel libyaml-devel pcre2-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
- run:
name: Make HTML documents
command: |
cd docs
make html
fedora34_gmake_roundtrip:
working_directory: ~/universal-ctags
docker:
- image: docker.io/fedora:34
steps:
- run:
name: Install Git and Gdb
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 pcre2-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
#
# 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 pcre2-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
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 pcre2-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
fedora34_distcheck:
working_directory: ~/universal-ctags
docker:
- image: docker.io/fedora:34
steps:
- run:
name: Install Git, Gdb and Procps-NG
command: |
dnf -y install git gdb procps-ng
- 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 pcre2-devel
dnf -y install jq puppet python3-docutils
- run:
name: Run autogen.sh
command: |
bash ./autogen.sh
- run:
name: Run configure
command: |
./configure
- run:
name: verify generated files (optlib, txt2cstr, etc.) are updated
command: |
make check-genfile
- run:
name: Test
command: |
ulimit -c 0
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 pcre2-devel findutils diffutils sudo
- run:
name: Build
command: |
bash ./autogen.sh
./configure --enable-debugging
make -j 2
- run:
name: Test
command: |
make check
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 pcre2-devel findutils diffutils sudo
- run:
name: Build
command: |
bash ./autogen.sh
./configure --enable-debugging
make -j 2
- run:
name: Test
command: |
make roundtrip
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 pcre2-devel findutils diffutils sudo
- run:
name: Build
command: |
bash ./autogen.sh
./configure --enable-debugging
make -j 2
- run:
name: Test
command: |
make check
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 pcre2-devel findutils diffutils sudo
- run:
name: Build
command: |
bash ./autogen.sh
./configure --enable-debugging
make -j 2
- run:
name: Test
command: |
make roundtrip
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
make units 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' )
workflows:
version: 2
build_and_test:
jobs:
- ubuntu20_32bit
- fedora30_bmake
- fedora34_distcheck
- centos_make
- fedora34_gmake
- fedora33_cross_aarch64
- centos7_make
- ubuntu20_mingw
- centos_make_roundtrip
- fedora30_bmake_roundtrip
- fedora34_gmake_roundtrip
- centos7_make_roundtrip