-
Notifications
You must be signed in to change notification settings - Fork 9
382 lines (379 loc) · 11.3 KB
/
Copy pathmain.yml
File metadata and controls
382 lines (379 loc) · 11.3 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
name: CI
on:
push:
branches: [ master, dev ]
pull_request:
branches: [ master ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
ubuntu-latest:
runs-on: ubuntu-24.04
name: Ubuntu 24.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install prereqs
run: |
sudo sed -i 's/azure\.//' /etc/apt/sources.list
sudo ./scripts/install_prereq.sh 1
- name: Build LBBS
run: |
sudo make modcheck
sudo make -j$(nproc) || sudo make NOISY_BUILD=1
sudo make install
sudo make samples
sudo make tests
- name: Run tests
run: |
sudo scripts/run_tests.sh
ubuntu-stable:
runs-on: ubuntu-22.04
name: Ubuntu 22.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install prereqs
run: |
sudo sed -i 's/azure\.//' /etc/apt/sources.list
sudo ./scripts/install_prereq.sh 1
- name: Build LBBS
run: |
sudo make modcheck
sudo make -j$(nproc) || sudo make NOISY_BUILD=1
sudo make install
sudo make samples
sudo make tests
- name: Run tests
run: |
sudo IGNORE_LIBBFD_MEMORY_LEAK_BUGS=1 scripts/run_tests.sh
without-optimization:
runs-on: ubuntu-24.04
name: Ubuntu 24.04, without optimization
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install prereqs
run: |
sudo sed -i 's/azure\.//' /etc/apt/sources.list
sudo ./scripts/install_prereq.sh
- name: Build LBBS
run: |
sudo sed -i 's/-O3/-O0/' Makefile
sudo make modcheck
sudo make -j$(nproc) || sudo make NOISY_BUILD=1
sudo make install
sudo make samples
sudo make tests
- name: Run unit tests
run: |
sudo scripts/run_tests.sh test_unit
- name: Install service
run: |
sudo adduser -c "BBS" bbs --disabled-password --shell /usr/sbin/nologin --gecos ""
# Remove the bbs.log from test suite executions since that is owned by root
sudo rm /var/log/lbbs/bbs.log
sudo make service
with-sanitizer:
runs-on: ubuntu-24.04
name: Ubuntu 24.04, under Address Sanitizer
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install prereqs
run: |
sudo sed -i 's/azure\.//' /etc/apt/sources.list
sudo ./scripts/install_prereq.sh 1
- name: Build LBBS
run: |
sudo make modcheck
sudo make -j$(nproc) NO_OPTIMIZE=1 ADDRESS_SANITIZER=1 || sudo make NO_OPTIMIZE=1 ADDRESS_SANITIZER=1 NOISY_BUILD=1
sudo make install
sudo make samples
sudo make tests
- name: Run tests
run: |
sudo ASAN_RUN=1 scripts/run_tests.sh
debian-13:
runs-on: ubuntu-24.04
name: Debian 13
container: debian:13
steps:
- uses: actions/checkout@v4
- name: Install prereqs
run: |
./scripts/install_prereq.sh
- name: Build LBBS
run: |
make modcheck
make -j$(nproc) || make NOISY_BUILD=1
make install
make samples
make tests
- name: Run basic tests
run: |
tests/test -ttest_menus -ddddddddd -DDDDDDDDDD -x
- name: Run unit tests
run: |
IGNORE_LIBBFD_MEMORY_LEAK_BUGS=1 scripts/run_tests.sh test_unit
- name: Run mail stress tests
run: |
# Different failure modes/bottlenecks are tested with low debug vs high
# This test with low BBS debug is also very quick (compared to w/ high debug)
tests/test -ttest_mail_stress -dddddddddd -D -x
# This test is very intensive so for efficiency, we don't run it
# in the bottleneck test paths and instead run it at the end here
NO_VALGRIND=1 scripts/run_tests.sh test_mail_stress
debian-12:
runs-on: ubuntu-24.04
name: Debian 12
container: debian:12
steps:
- uses: actions/checkout@v4
- name: Install prereqs
run: |
./scripts/install_prereq.sh
- name: Build LBBS
run: |
make modcheck
make -j$(nproc) || make NOISY_BUILD=1
make install
make samples
make tests
- name: Run basic tests
run: |
tests/test -ttest_menus -ddddddddd -DDDDDDDDDD -x
- name: Run unit tests
run: |
IGNORE_LIBBFD_MEMORY_LEAK_BUGS=1 scripts/run_tests.sh test_unit
debian-11:
runs-on: ubuntu-24.04
name: Debian 11
container: debian:11
steps:
- uses: actions/checkout@v4
- name: Install prereqs
run: |
./scripts/install_prereq.sh
- name: Build LBBS
run: |
make modcheck
make -j$(nproc) || make NOISY_BUILD=1
make install
make samples
make tests
- name: Run basic tests
run: |
tests/test -ttest_menus -ddddddddd -DDDDDDDDDD -x
- name: Run unit tests
run: |
IGNORE_LIBBFD_MEMORY_LEAK_BUGS=1 scripts/run_tests.sh test_unit
debian-10:
runs-on: ubuntu-24.04
name: Debian 10
container: debian:10
steps:
- uses: actions/checkout@v4
- name: Install prereqs
run: |
sed -i 's|deb.debian.org/debian buster main|archive.debian.org/debian buster main|g' /etc/apt/sources.list
sed -i 's|deb.debian.org/debian buster-updates main|archive.debian.org/debian buster-updates main|g' /etc/apt/sources.list
sed -i 's|deb.debian.org/debian-security buster/updates main|archive.debian.org/debian-security buster/updates main|g' /etc/apt/sources.list
cat /etc/apt/sources.list
./scripts/install_prereq.sh
- name: Build LBBS
run: |
make modcheck
make -j$(nproc) || make NOISY_BUILD=1
make install
make samples
make tests
- name: Run basic tests
run: |
tests/test -ttest_menus -ddddddddd -DDDDDDDDDD -x
- name: Run unit tests
run: |
scripts/run_tests.sh test_unit
alpine-linux:
runs-on: ubuntu-24.04
name: Alpine Linux
container: alpine:latest
steps:
- uses: actions/checkout@v4
- name: Install prereqs
run: |
./scripts/install_prereq.sh
- name: Build LBBS
run: |
make modcheck
make modconfig
rm modules/mod_test_backtrace.c # Causes invalid read of size 8 in getframeaddr (in /usr/lib/libexecinfo.so.1)
make -j$(nproc) || make NOISY_BUILD=1
make install
make samples
make tests
- name: Run unit tests
run: |
scripts/run_tests.sh test_unit
fedora-42:
runs-on: ubuntu-24.04
name: Fedora 42
container: fedora:42
steps:
- uses: actions/checkout@v4
- name: Install prereqs
run: |
INSTALL_LIBOPENARC=0 ./scripts/install_prereq.sh
- name: Build LBBS
run: |
make modcheck
make modconfig
make -j$(nproc) || make NOISY_BUILD=1
make install
make samples
make tests
- name: Run basic tests
run: |
tests/test -ttest_menus -ddddddddd -DDDDDDDDDD -x
- name: Run unit tests
run: |
scripts/run_tests.sh test_unit
fedora-40:
runs-on: ubuntu-24.04
name: Fedora 40
container: fedora:40
steps:
- uses: actions/checkout@v4
- name: Install prereqs
run: |
INSTALL_LIBOPENARC=0 ./scripts/install_prereq.sh
- name: Build LBBS
run: |
make modcheck
make modconfig
make -j$(nproc) || make NOISY_BUILD=1
make install
make samples
make tests
- name: Run basic tests
run: |
tests/test -ttest_menus -ddddddddd -DDDDDDDDDD -x
- name: Run unit tests
run: |
IGNORE_LIBBFD_MEMORY_LEAK_BUGS=1 scripts/run_tests.sh test_unit
rocky-9:
runs-on: ubuntu-24.04
name: Rocky Linux 9.3
container: rockylinux:9.3
steps:
- uses: actions/checkout@v4
- name: Install prereqs
run: |
INSTALL_LIBOPENARC=0 ./scripts/install_prereq.sh
- name: Build LBBS
run: |
make modcheck
make modconfig
make -j$(nproc) || make NOISY_BUILD=1
make install
make samples
make tests
- name: Run basic tests
run: |
tests/test -ttest_menus -ddddddddd -DDDDDDDDDD -x
- name: Run unit tests
run: |
IGNORE_LIBBFD_MEMORY_LEAK_BUGS=1 scripts/run_tests.sh test_unit
rocky-8:
runs-on: ubuntu-24.04
name: Rocky Linux 8.9
container: rockylinux:8.9
steps:
- uses: actions/checkout@v4
- name: Install prereqs
run: |
INSTALL_LIBOPENARC=0 ./scripts/install_prereq.sh
- name: Build LBBS
run: |
make modcheck
make modconfig
make -j$(nproc) || make NOISY_BUILD=1
make install
make samples
make tests
- name: Run basic tests
run: |
tests/test -ttest_menus -ddddddddd -DDDDDDDDDD -x
- name: Run unit tests
run: |
IGNORE_LIBBFD_MEMORY_LEAK_BUGS=1 scripts/run_tests.sh test_unit
opensuse:
runs-on: ubuntu-24.04
name: openSUSE Tumbleweed
container: opensuse/tumbleweed
steps:
- uses: actions/checkout@v4
- name: Install prereqs
run: |
INSTALL_LIBETPAN=0 ./scripts/install_prereq.sh
- name: Build LBBS
run: |
make modcheck
make modconfig
make -j$(nproc) || make NOISY_BUILD=1
make install
make samples
make tests
- name: Run basic tests
run: |
tests/test -ttest_menus -ddddddddd -DDDDDDDDDD -x
- name: Run unit tests
run: |
scripts/run_tests.sh test_unit
archlinux:
runs-on: ubuntu-24.04
name: Arch Linux
container: archlinux:latest
steps:
- uses: actions/checkout@v4
- name: Install prereqs
run: |
INSTALL_LIBOPENARC=0 ./scripts/install_prereq.sh
- name: Build LBBS
run: |
make modcheck
make modconfig
make -j$(nproc) || make NOISY_BUILD=1
make install
make samples
make tests
- name: Run basic tests
run: |
tests/test -ttest_menus -ddddddddd -DDDDDDDDDD -x
- name: Run unit tests
run: |
scripts/run_tests.sh test_unit
freebsd-14:
runs-on: ubuntu-24.04
name: FreeBSD
steps:
- uses: actions/checkout@v4
- name: Install prereqs and build LBBS
uses: vmactions/freebsd-vm@v1
with:
usesh: true
copyback: false
run: |
INSTALL_LIBETPAN=0 INSTALL_LIBDISCORD=0 ./scripts/install_prereq.sh
gmake modcheck
gmake modconfig
gmake -j$(nproc) bbs
gmake -j$(nproc) doors
gmake -j$(nproc) io
gmake -j$(nproc) modules
gmake -j$(nproc) nets
gmake -j$(nproc)
gmake install
gmake samples
gmake tests
gmake install || gmake install NOISY_BUILD=1