-
Notifications
You must be signed in to change notification settings - Fork 92
540 lines (530 loc) · 15.1 KB
/
build.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
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
name: Checks
on:
push:
branches:
- main
- branch-*
paths-ignore:
- 'CONTRIBUTORS'
- 'NEWS'
pull_request:
branches:
- main
- branch-*
types:
- opened
- synchronize
- reopened
paths-ignore:
- 'CONTRIBUTORS'
- 'NEWS'
env:
APT_PACKAGES: |
autoconf \
automake \
docbook-xsl \
libacl1-dev \
libavahi-client-dev \
libcrack2-dev \
libcups2-dev \
libdb-dev \
libgcrypt-dev \
libkrb5-dev \
libldap2-dev \
libltdl-dev \
libpam0g-dev \
libssl-dev \
libtirpc-dev \
libtool \
libtool-bin \
libwrap0-dev \
meson \
ninja-build \
quota \
tcpd \
xsltproc
jobs:
build-alpine:
name: Alpine Linux
runs-on: ubuntu-22.04
container:
image: alpine:latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
apk add \
acl-dev \
autoconf \
automake \
avahi-dev \
build-base \
cracklib \
cracklib-dev \
cracklib-words \
cups \
cups-dev \
curl \
db-dev \
gcc \
krb5-dev \
libgcrypt-dev \
libtirpc-dev \
libtool \
linux-pam-dev \
meson \
ninja \
openldap-dev \
openrc \
openssl-dev \
pkgconfig
- name: Autotools - Bootstrap
run: ./bootstrap
- name: Autotools - Configure
run: |
./configure \
--enable-krbV-uam \
--enable-openrc \
--enable-pgp-uam \
--with-cracklib \
--with-libtirpc
- name: Autotools - Build
run: make -j $(nproc)
- name: Autotools - Run tests
run: make check
- name: Autotools - Install
run: make install
- name: Autotools - Uninstall
run: make uninstall
- name: Meson - Configure
run: |
meson setup build \
-Dbuild-tests=true \
-Denable-openrc=true
- name: Meson - Build
run: ninja -C build
- name: Meson - Run tests
run: cd build && meson test
- name: Meson - Install
run: ninja -C build install
- name: Meson - Uninstall
run: ninja -C build uninstall
build-debian:
name: Debian Linux
runs-on: ubuntu-22.04
container:
image: debian:latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
apt-get update
apt-get install --assume-yes --no-install-recommends ${{ env.APT_PACKAGES }}
- name: Autotools - Bootstrap
run: ./bootstrap
- name: Autotools - Configure
run: |
./configure \
--enable-debian \
--enable-krbV-uam \
--enable-pgp-uam \
--enable-quota \
--with-cracklib \
--with-libtirpc
- name: Autotools - Build
run: make -j $(nproc) all
- name: Autotools - Run tests
run: make check
- name: Autotools - Install
run: make install
- name: Start netatalk
run: /etc/init.d/netatalk start && sleep 2 && asip-status localhost
- name: Stop netatalk
run: /etc/init.d/netatalk stop
- name: Autotools - Uninstall
run: make uninstall
- name: Meson - Configure
run: |
meson setup build \
-Dbuild-tests=true \
-Denable-debian=true \
-Dwith-libtirpc=true
- name: Meson - Build
run: ninja -C build
- name: Meson - Tests
run: cd build && meson test
- name: Meson - Install
run: ninja -C build install
- name: Start netatalk
run: /etc/init.d/netatalk start && sleep 2 && asip-status localhost
- name: Stop netatalk
run: /etc/init.d/netatalk stop
- name: Meson - Uninstall
run: ninja -C build uninstall
build-fedora:
name: Fedora
runs-on: ubuntu-22.04
container:
image: fedora:latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
dnf --setopt=install_weak_deps=False --assumeyes install \
automake \
avahi-devel \
chkconfig \
cracklib-devel \
cups-devel \
file \
krb5-devel \
libacl-devel \
libdb-devel \
libgcrypt-devel \
libtool \
meson \
ninja-build \
openldap-devel \
openssl-devel
- name: Autotools - Bootstrap
run: ./bootstrap
- name: Autotools - Configure
run: |
./configure \
--enable-pgp-uam \
--enable-krbV-uam \
--enable-redhat \
--with-cracklib=/usr/share/cracklib
- name: Autotools - Build
run: make -j $(nproc) all
- name: Autotools - Run tests
run: make check
- name: Autotools - Install
run: sudo make install
- name: Autotools - Uninstall
run: sudo make uninstall
- name: Meson - Configure
run: |
meson setup build \
-Dbuild-tests=true \
-Dwith-libtirpc=true \
-Denable-redhat=true
- name: Meson - Build
run: ninja -C build
- name: Meson - Tests
run: cd build && meson test
- name: Meson - Install
run: sudo ninja -C build install
- name: Meson - Uninstall
run: sudo ninja -C build uninstall
build-macos:
name: macOS
runs-on: macos-latest
env:
HOMEBREW_NO_INSTALL_CLEANUP: 1
HOMEBREW_NO_AUTO_UPDATE: 1
HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK: 1
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: brew install \
automake \
berkeley-db \
krb5 \
libressl \
libtool \
meson
- name: Autotools - Bootstrap
run: ./bootstrap
- name: Autotools - Configure
# Disable DDP in the absence of an AppleTalk stack on macOS
run: |
./configure \
--disable-ddp \
--enable-pgp-uam \
--enable-krbV-uam \
--with-ssl-dir=/usr/local/opt/libressl \
--with-bdb=/usr/local/opt/berkeley-db
- name: Autotools - Build
run: make -j $(nproc) all
- name: Autotools - Run tests
run: make check
- name: Autotools - Install
run: sudo make install
- name: Autotools - Uninstall
run: sudo make uninstall
- name: Meson - Configure
run: |
meson setup build \
-Dwith-bdb=/usr/local/opt/berkeley-db \
-Dwith-ssl-dir=/usr/local/opt/libressl \
-Dbuild-tests=true \
-Denable-macos=true
- name: Meson - Build
run: ninja -C build
- name: Meson - Tests
run: cd build && meson test
- name: Meson - Install
run: sudo ninja -C build install
- name: Meson - Uninstall
run: sudo ninja -C build uninstall
build-netbsd:
name: "NetBSD"
runs-on: ubuntu-22.04
permissions:
contents: read
steps:
- name: "Checkout repository"
uses: actions/checkout@v4
- name: "Build on VM"
uses: vmactions/[email protected]
with:
release: 10.0
copyback: false
prepare: |
pkg_add \
autoconf \
automake \
avahi \
db5 \
gcc13 \
gmake \
libcups \
libgcrypt \
libressl \
libtool \
meson \
pkg-config
run: |
set -e
echo "Building with Autotools"
./bootstrap
./configure \
--enable-krbV-uam \
--enable-netbsd \
--enable-pgp-uam \
--with-bdb=/usr/pkg \
--with-libgcrypt-dir=/usr/pkg \
MAKE=gmake \
PKG_CONFIG_PATH=/usr/pkg/lib/pkgconfig
gmake -j2 all
gmake install
service netatalk onestart
sleep 2
asip-status localhost
service netatalk onestop
echo "Building with Meson"
meson setup build \
-Dpkg_config_path=/usr/pkg/lib/pkgconfig \
-Denable-netbsd=true
ninja -C build
ninja -C build install
service netatalk onestart
sleep 2
asip-status localhost
service netatalk onestop
ninja -C build uninstall
build-opensuse:
name: openSUSE Linux
runs-on: ubuntu-22.04
container:
image: opensuse/tumbleweed:latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
zypper in -y \
automake \
file \
gawk \
gcc \
libtool \
make \
meson \
ninja \
pkg-config \
systemd \
wget &&
zypper in -y \
cracklib-devel \
cups \
cups-devel \
glib2-devel \
krb5-devel \
libacl-devel \
libavahi-devel \
libdb-4_8-devel \
libgcrypt-devel \
libmariadb-devel \
libopenssl-devel \
libtdb-devel \
openldap2-devel \
pam-devel \
systemtap-sdt-devel \
tcpd-devel
- name: Autotools - Bootstrap
run: ./bootstrap
- name: Autotools - Configure
run: |
./configure \
--disable-install-privileged \
--enable-krbV-uam \
--enable-pgp-uam \
--with-cracklib \
--enable-systemd
- name: Autotools - Build
run: make -j $(nproc)
- name: Autotools - Run tests
run: make check
- name: Autotools - Install
run: make install
- name: Autotools - Uninstall
run: make uninstall
- name: Meson - Configure
run: |
meson setup build \
-Dbuild-tests=true
- name: Meson - Build
run: ninja -C build
- name: Meson - Run tests
run: cd build && meson test
- name: Meson - Install
run: ninja -C build install
- name: Meson - Uninstall
run: ninja -C build uninstall
build-solaris:
name: "Solaris"
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: "Checkout repository"
uses: actions/checkout@v4
- name: "Build on VM"
uses: vmactions/[email protected]
with:
release: 11.4
prepare: |
pkg install \
autoconf \
automake \
gcc \
libgcrypt \
libtool \
pkg-config
wget https://ftp.gnu.org/gnu/autoconf/autoconf-2.71.tar.gz --no-check-certificate
wget https://ftp.gnu.org/gnu/automake/automake-1.16.5.tar.gz --no-check-certificate
tar xvf autoconf-2.71.tar.gz
tar xvf automake-1.16.5.tar.gz
cd autoconf-2.71
./configure --prefix=/usr
make
make install
cd ../automake-1.16.5
./configure --prefix=/usr
make
make install
cd ..
run: |
set -e
echo "Building with Autotools"
./bootstrap
./configure \
MAKE=gmake \
--enable-cups=no
gmake -j $(nproc) all
gmake install
/etc/rc2.d/S90netatalk start
sleep 2
/usr/local/bin/asip-status localhost
sudo /etc/rc2.d/S90netatalk stop
gmake uninstall
build-ubuntu:
name: Ubuntu Linux
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install --assume-yes --no-install-recommends ${{ env.APT_PACKAGES }}
- name: Autotools - Bootstrap
run: ./bootstrap
- name: Autotools - Configure
run: |
./configure \
--enable-krbV-uam \
--enable-pgp-uam \
--enable-quota \
--enable-systemd \
--with-cracklib \
--with-libtirpc
- name: Autotools - Generate manual pages
run: make html
- name: Autotools - Build
run: make -j $(nproc) all
- name: Autotools - Run tests
run: make check
- name: Autotools - Run distribution tests
run: make distcheck
- name: Autotools - Install
run: sudo make install
- name: Start netatalk
run: sudo systemctl start afpd && sleep 2 && asip-status localhost
- name: Stop netatalk
run: sudo systemctl stop afpd
- name: Autotools - Uninstall
run: sudo make uninstall
- name: Meson - Configure
run: |
meson setup build \
-Dbuild-tests=true \
-Dbuild-manual=true \
-Dwith-libtirpc=true
- name: Meson - Build and generate man pages
run: ninja -C build
- name: Meson - Tests
run: cd build && meson test
- name: Meson - Distribution tests
run: cd build && meson dist
- name: Meson - Install
run: sudo ninja -C build install
- name: Start netatalk
run: sudo systemctl start afpd && sleep 2 && asip-status localhost
- name: Stop netatalk
run: sudo systemctl stop afpd
- name: Meson - Uninstall
run: sudo ninja -C build uninstall
static_analysis:
name: Static Analysis
runs-on: ubuntu-22.04
env:
# Directory where build-wrapper output will be placed
BUILD_WRAPPER_OUT_DIR: build_wrapper_output_directory
# Run only if not originating from a fork
if: ${{ !github.event.pull_request.head.repo.fork }}
steps:
- uses: actions/checkout@v4
with:
# Shallow clones should be disabled for a better relevancy of analysis
fetch-depth: 0
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install --assume-yes --no-install-recommends ${{ env.APT_PACKAGES }}
- name: Install sonar-scanner and build-wrapper
uses: SonarSource/sonarcloud-github-c-cpp@v2
- name: Run build-wrapper
run: |
mkdir -p ${{ env.BUILD_WRAPPER_OUT_DIR }}
meson setup build \
-Denable-krbV-uam=enabled \
-Denable-pgp-uam=enabled \
-Dwith-libtirpc=true
build-wrapper-linux-x86-64 --out-dir ${{ env.BUILD_WRAPPER_OUT_DIR }} ninja -C build
- name: Run sonar-scanner
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: |
sonar-scanner --define sonar.cfamily.build-wrapper-output="${{ env.BUILD_WRAPPER_OUT_DIR }}"