-
Notifications
You must be signed in to change notification settings - Fork 627
/
circle.yml
343 lines (334 loc) · 11.2 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
version: 2
jobs:
#
# This is for the latest RELEASED Fedora.
# Update the version of Fedora when new version is released.
# We don't use rawhide, the development version of Fedora
# till the list of TODO items of u-ctags becomes nil.
#
# We assume GNU Make is available.
#
fedora40_gmake:
working_directory: ~/universal-ctags
docker:
- image: docker.io/fedora:40
steps:
- run:
name: Install Git, Gdb and Procps-NG
command: |
yum -y install git gdb procps-ng
- checkout
- run:
name: Install tools for building ctags and validating test input files
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
# These are for input-validation.
dnf -y install g++ jq puppet nodejs gcc-gfortran
- run:
name: Build
command: |
bash ./autogen.sh
./configure --enable-debugging
make -j 2
- run:
name: Test
command: |
make check validate-input
- run:
name: Make HTML documents
command: |
cd docs
make html
fedora40_gmake_roundtrip:
working_directory: ~/universal-ctags
docker:
- image: docker.io/fedora:40
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
#
# We assume GNU make as the `make` command as we use GNU make extension
# aggressively in man/Makefile and win32/Makefile.
#
# man/Makefile is used to generate man files only when rst2man is installed.
# win32/Makefile is used only when either source.mk or win32/*.in is updated.
# In other cases we can still build ctags without GNU make.
#
# The following tests use bmake (NetBSD make) to check if GNU make extensions
# are not used unintentionally.
#
# 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.
#
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 packages for building ctags with bmake and checking code
command: |
dnf -y install gcc automake autoconf pkgconfig bmake libseccomp-devel libxml2-devel jansson-devel libyaml-devel pcre2-devel findutils sudo
- run:
name: Build
command: |
bash ./autogen.sh
MAKE=bmake ./configure --enable-debugging
bmake -j 2
- run:
name: Test
command: |
MAKE=bmake bmake 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
fedora40_distcheck:
working_directory: ~/universal-ctags
docker:
- image: docker.io/fedora:40
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
# Let's trick git.
#
# "git" running in "make distcheck" may refer $(pwd)/.git of THIS context.
# On the other hand, we want to run the test cases in an environment separated
# from our git repo.
#
mkdir __NO_GIT__
make distcheck GIT_DIR=__NO_GIT__
rmdir __NO_GIT__
stream9:
working_directory: ~/universal-ctags
docker:
- image: quay.io/centos/centos:stream9
steps:
- run:
name: Install Git
command: |
yum -y --enablerepo=baseos --enablerepo=appstream --enablerepo=crb install git
- checkout
- run:
name: Install build tools
command: |
yum -y --enablerepo=baseos --enablerepo=appstream --enablerepo=crb install python3 gcc automake autoconf pkgconfig make libxml2-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 roundtrip
ubi8:
working_directory: ~/universal-ctags
docker:
- image: registry.access.redhat.com/ubi8:latest
steps:
- run:
name: Install Git
command: |
yum -y install git
- checkout
- run:
name: Install build tools
command: |
yum -y --enablerepo=ubi-8-appstream-rpms --enablerepo=ubi-8-baseos-rpms --enablerepo=ubi-8-codeready-builder-rpms install python3 gcc automake autoconf pkgconfig make libxml2-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 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
- fedora40_distcheck
- stream9
- ubi8
- fedora40_gmake
- fedora33_cross_aarch64
- ubuntu20_mingw
- fedora30_bmake_roundtrip
- fedora40_gmake_roundtrip