-
Notifications
You must be signed in to change notification settings - Fork 1.1k
297 lines (247 loc) · 8.86 KB
/
ci-deb.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
name: CI DEB
on:
push:
branches-ignore:
- coverity_scan
- run-fuzzer**
- debug-fuzzer-**
schedule:
- cron: '0 20 * * *'
env:
DEBIAN_FRONTEND: noninteractive
jobs:
#
# We don't want to consume many workers on each push so we only build the
# full suite of distros during the scheduled or ci-debug run and just the
# "bleeding-edge" distro on each push.
#
# This job builds the matrix based on the event that trigger this run which
# the next job consumes.
#
set-matrix:
name: Setup build matrix
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
steps:
- id: set-matrix
name: Setup the matrix
run: |
if [ "$GITHUB_EVENT_NAME" = "schedule" -o "$GITHUB_REF" = "refs/heads/ci-debug" ]; then
M=$(cat <<EOF
{
"env": [
{ "NAME": "ubuntu-22.04", "OS": "ubuntu:22.04" },
{ "NAME": "ubuntu-24.04", "OS": "ubuntu:24.04" },
{ "NAME": "debian-12", "OS": "debian:bookworm" },
{ "NAME": "debian-sid", "OS": "debian:sid" }
]
}
EOF
)
else
M=$(cat <<EOF
{
"env": [
{ "NAME": "debian-12", "OS": "debian:bookworm" }
]
}
EOF
)
fi
echo matrix=$M >> $GITHUB_OUTPUT
deb-build:
needs:
- set-matrix
strategy:
matrix: ${{ fromJson(needs.set-matrix.outputs.matrix) }}
fail-fast: false
runs-on: ubuntu-latest
container:
image: ${{ matrix.env.OS }}
env:
HOSTAPD_BUILD_DIR: /tmp/eapol_test.ci
HOSTAPD_GIT_TAG: hostap_2_11
name: "DEB build"
steps:
- name: Package manager performance and stability improvements
run: |
if [ -f "/etc/apt/sources.list" ]; then
sed -i 's/deb.debian.org/debian-archive.trafficmanager.net/' /etc/apt/sources.list
sed -i 's/archive.ubuntu.com/azure.archive.ubuntu.com/' /etc/apt/sources.list
fi
echo 'Acquire::Retries "10";' > /etc/apt/apt.conf.d/80-retries
echo 'force-unsafe-io' > /etc/dpkg/dpkg.cfg.d/02speedup
echo 'man-db man-db/auto-update boolean false' | debconf-set-selections
apt-get update
#
# Required so that the checkout action uses git protocol rather than the GitHub REST API.
# make rpm requires the FR directory to be a git repository.
#
- name: Install recent git
run: |
apt-get install -y --no-install-recommends git-core ca-certificates
- name: Install build tools
run: |
apt-get install -y --no-install-recommends make gcc libc6-dev equivs file curl gnupg2 lsb-release
- name: NetworkRADIUS signing key
run: curl -sS https://packages.inkbridgenetworks.com/pgp/packages%40networkradius.com | APT_KEY_DONT_WARN_ON_DANGEROUS_USAGE=yes apt-key add -
- name: Set up NetworkRADIUS extras repository
run: |
DIST=$(lsb_release -is | tr '[:upper:]' '[:lower:]')
RELEASE=$(lsb_release -cs)
if [ "$RELEASE" = "n/a" ]; then
RELEASE=$(cat /etc/debian_version | awk -F \/ '{ print $(NF) }')
fi
[ "$RELEASE" != "trixie" ] || RELEASE=sid
echo "deb http://packages.networkradius.com/extras/${DIST}/${RELEASE} ${RELEASE} main" \
> /etc/apt/sources.list.d/networkradius-extras.list
- name: Update apt repository lists
run: apt-get update
- uses: actions/checkout@v4
with:
path: freeradius
- name: Install build dependencies
run: |
apt-get install -y --no-install-recommends build-essential devscripts quilt fakeroot
debian/rules debian/control
mk-build-deps -irt"apt-get -y" debian/control
working-directory: freeradius
- name: Build DEBs
run: |
make deb
working-directory: freeradius
- name: Collect DEBs
run: |
mkdir debs
mv *.deb debs
- name: Restore eapol_test build directory from cache
uses: actions/cache@v4
id: hostapd-cache
with:
path: ${{ env.HOSTAPD_BUILD_DIR }}
key: hostapd-${{ matrix.env.NAME }}-${{ env.HOSTAPD_GIT_TAG }}-v1
# Build eapol_test using a minimal make environment to avoid configuring
- name: Build eapol_test
run: |
apt-get install -y libnl-3-dev libnl-genl-3-dev
scripts/ci/eapol_test-build.sh
mv scripts/ci/eapol_test/eapol_test ../debs
working-directory: freeradius
- name: Store DEBs
uses: actions/upload-artifact@v4
with:
name: debs-${{ matrix.env.NAME }}
path: debs
retention-days: 1
#
# If the CI has failed and the branch is ci-debug then start a tmate
# session. SSH rendezvous point is emited continuously in the job output.
#
- name: "Debug: Package dependancies for tmate"
run: |
apt-get install -y --no-install-recommends xz-utils
if: ${{ github.ref == 'refs/heads/ci-debug' && failure() }}
- name: "Debug: Start tmate"
uses: mxschmitt/action-tmate@v3
with:
limit-access-to-actor: true
sudo: false
if: ${{ github.ref == 'refs/heads/ci-debug' && failure() }}
#
# Perform "post-install" testing of the FR packages that we have just built
# in a clean environment consisting of only the base OS and package
# dependancies
#
deb-test:
needs:
- set-matrix
- deb-build
strategy:
matrix: ${{ fromJson(needs.set-matrix.outputs.matrix) }}
fail-fast: false
runs-on: ubuntu-latest
container:
image: ${{ matrix.env.OS }}
name: "DEB install test"
steps:
- name: Load DEBs
uses: actions/download-artifact@v4
with:
name: debs-${{ matrix.env.NAME }}
- name: Package manager performance and stability improvements
run: |
if [ -f "/etc/apt/sources.list" ]; then
sed -i 's/deb.debian.org/debian-archive.trafficmanager.net/' /etc/apt/sources.list
sed -i 's/archive.ubuntu.com/azure.archive.ubuntu.com/' /etc/apt/sources.list
fi
echo 'Acquire::Retries "10";' > /etc/apt/apt.conf.d/80-retries
echo 'force-unsafe-io' > /etc/dpkg/dpkg.cfg.d/02speedup
echo 'man-db man-db/auto-update boolean false' | debconf-set-selections
apt-get update
# procps for pkill, curl+gnupg2 for apt-key, ca-certificates for curl
- name: Install system utilities
run: |
apt-get install -y --no-install-recommends procps curl gnupg2 ca-certificates lsb-release
- name: NetworkRADIUS signing key
run: curl -sS https://packages.inkbridgenetworks.com/pgp/packages%40networkradius.com | APT_KEY_DONT_WARN_ON_DANGEROUS_USAGE=yes apt-key add -
- name: Set up NetworkRADIUS extras repository
run: |
DIST=$(lsb_release -is | tr '[:upper:]' '[:lower:]')
RELEASE=$(lsb_release -cs)
if [ "$RELEASE" = "n/a" ]; then
RELEASE=$(cat /etc/debian_version | awk -F \/ '{ print $(NF) }')
fi
[ "$RELEASE" != "trixie" ] || RELEASE=sid
echo "deb http://packages.networkradius.com/extras/${DIST}/${RELEASE} ${RELEASE} main" \
> /etc/apt/sources.list.d/networkradius-extras.list
- name: Update apt repository lists
run: apt-get update
- name: Install DEBs
run: |
find . -maxdepth 1 -name '*.deb' | xargs apt-get install -y --no-install-recommends
- name: Config test
run: |
freeradius -XC
#
# We now perform some post-install tests that depend on the availability
# of the source tree
#
- name: Install pre-built eapol_test
run: |
apt-get install -y libssl1.? libdbus-1-? libnl-3-200 libnl-genl-3-200
mv eapol_test /usr/local/bin
chmod +x /usr/local/bin/eapol_test
- uses: actions/checkout@v4
with:
path: freeradius
- name: Run the post-install test target
run: |
make -C raddb/certs
touch Make.inc
mkdir -p build/tests/eapol_test
echo "EAPOL_TEST=" $(which eapol_test) > build/tests/eapol_test/eapol_test.mk
make -f scripts/ci/package-test.mk package-test
working-directory: freeradius
- name: Upload radius logs on failure
if: ${{ failure() }}
uses: actions/upload-artifact@v4
with:
name: radius-logs-${{ matrix.env.NAME }}
path: |
/var/log/freeradius
freeradius/build/tests/eapol_test
retention-days: 30
#
# See above comments for tmate
#
- name: "Debug: Package dependancies for tmate"
run: |
apt-get install -y --no-install-recommends xz-utils
if: ${{ github.ref == 'refs/heads/ci-debug' && failure() }}
- name: "Debug: Start tmate"
uses: mxschmitt/action-tmate@v3
with:
limit-access-to-actor: true
sudo: false
if: ${{ github.ref == 'refs/heads/ci-debug' && failure() }}