-
Notifications
You must be signed in to change notification settings - Fork 89
364 lines (356 loc) · 10.2 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
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:
integration_test:
name: Ubuntu
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: 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: Meson - Uninstall
run: sudo ninja -C build uninstall
build-debian:
name: Debian
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: 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: Meson - Uninstall
run: ninja -C build uninstall
build-fedora:
name: Fedora
runs-on: ubuntu-22.04
container:
image: fedora:rawhide
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
dnf -y 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-13
env:
HOMEBREW_NO_INSTALL_CLEANUP: 1
HOMEBREW_NO_AUTO_UPDATE: 1
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: brew install automake libressl krb5 berkeley-db 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: 9.3
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
echo "Building with Meson"
meson setup build \
-Dpkg_config_path=/usr/pkg/lib/pkgconfig \
-Denable-netbsd=true
ninja -C build
ninja -C build install
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 libtool pkg-config gcc libgcrypt
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
gmake 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 }}"