forked from libcgroup/libcgroup
-
Notifications
You must be signed in to change notification settings - Fork 0
431 lines (404 loc) · 13 KB
/
continuous-integration.yml
File metadata and controls
431 lines (404 loc) · 13 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
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
# SPDX-License-Identifier: LGPL-2.1-only
#
# Continuous Integration Workflow for libcgroup
#
# Copyright (c) 2020-2021 Oracle and/or its affiliates.
# Author: Tom Hromatka <tom.hromatka@oracle.com>
#
name: Continuous Integration
on: ["push", "pull_request"]
jobs:
# Doc: https://github.com/redhat-plumbers-in-action/differential-shellcheck#usage
differential-shellcheck:
name: Differential ShellCheck
if: github.event_name == 'pull_request'
runs-on: ubuntu-latest
permissions:
contents: read
security-events: write
pull-requests: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Differential ShellCheck
uses: redhat-plumbers-in-action/differential-shellcheck@v5
with:
severity: warning
token: ${{ secrets.GITHUB_TOKEN }}
flake8-lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Install flake8 dependencies
run: |
sudo apt-get update
sudo apt-get install python3-flake8-quotes
- name: Check out source repository
uses: actions/checkout@v4
- name: Set up Python environment
uses: actions/setup-python@v5
with:
python-version: "3.8"
- name: flake8 Lint
uses: reviewdog/action-flake8@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
checkpatch:
name: Checkpatch Review
runs-on: ubuntu-latest
if: github.event_name == 'pull_request'
permissions:
contents: read
pull-requests: read
steps:
- name: 'Calculate PR commits + 1'
run: echo "PR_FETCH_DEPTH=$(( ${{ github.event.pull_request.commits }} + 1 ))" >> $GITHUB_ENV
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: ${{ env.PR_FETCH_DEPTH }}
- name: Run checkpatch review
uses: webispy/checkpatch-action@v9
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
doxygen:
name: Doxygen
# Only run Doxygen against the main branch
if: github.ref_name == 'main'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: false
- uses: mattnotmitt/doxygen-action@v1
with:
working-directory: "./"
doxyfile-path: "./doc/Doxygen"
- name: Move the Doxygen Files
run: sudo mv ./html doc/
- name: Deploy Doxygen
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./doc/html
publish_branch: doxygen/${{ github.ref_name }}
unittests:
name: Unit Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: false
- name: Initialize the directory
uses: ./.github/actions/setup-libcgroup
- name: Run unit tests
run: |
pushd tests/gunit
make check
popd
- name: Display test logs
if: ${{ always() }}
run: cat tests/gunit/test-suite.log
- name: Collate code coverage results
uses: ./.github/actions/code-coverage
- name: Upload code coverage results
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: ./lcov.total
flag-name: "Unit Tests"
parallel: True
- name: Archive code coverage results
if: ${{ always() }}
uses: actions/upload-artifact@v4
with:
name: Unit Test Code Coverage
path: lcov.*
distcheckv1:
name: Cgroup v1 Dist Check
runs-on: ubuntu-20.04
steps:
- name: Install container dependencies
run: |
sudo apt-get update
sudo apt-get install lxc lxd-installer
- uses: actions/checkout@v4
with:
submodules: false
- name: Initialize the directory
uses: ./.github/actions/setup-libcgroup
- name: Run make distcheck
run: make distcheck
- name: Display test logs
if: ${{ failure() }}
run: |
cat libcgroup-*/_build/sub/tests/ftests/ftests-wrapper.sh.log
distcheckv2:
name: Cgroup v2 Dist Check
runs-on: ubuntu-22.04
steps:
- name: Install container dependencies
run: |
sudo apt-get update
sudo apt-get install lxc lxd-installer
- uses: actions/checkout@v4
with:
submodules: false
- name: Initialize the directory
uses: ./.github/actions/setup-libcgroup
- name: Run make distcheck
run: make distcheck
- name: Display test logs
if: ${{ failure() }}
run: |
cat libcgroup-*/_build/sub/tests/ftests/ftests-wrapper.sh.log
buildtests:
name: Build tests
runs-on: ubuntu-20.04
steps:
- name: Install dependencies
run: |
sudo apt-get update
- uses: actions/checkout@v4
with:
submodules: false
- name: Initialize the directory
uses: ./.github/actions/setup-libcgroup
- name: Reconfigure libcgroup with systemd disabled
run: CFLAGS="$CFLAGS -Werror" ./configure --sysconfdir=/etc --localstatedir=/var --enable-code-coverage --enable-opaque-hierarchy="name=systemd" --enable-python --enable-systemd=no
- name: Build the library
run: make
- name: Reconfigure libcgroup with samples enabled
run: CFLAGS="$CFLAGS -Werror" ./configure --sysconfdir=/etc --localstatedir=/var --enable-code-coverage --enable-opaque-hierarchy="name=systemd" --enable-python --enable-samples
- name: Build the library
run: make
- name: Reconfigure libcgroup with systemd disabled and samples enabled
run: CFLAGS="$CFLAGS -Werror" ./configure --sysconfdir=/etc --localstatedir=/var --enable-code-coverage --enable-opaque-hierarchy="name=systemd" --enable-python --enable-systemd=no --enable-samples
- name: Build the library
run: make
nosystemd:
name: Build without systemd enabled
runs-on: ubuntu-20.04
steps:
- name: Update the system
run: |
sudo apt-get update
- uses: actions/checkout@v4
with:
submodules: false
- name: Install dependencies
run: |
sudo apt-get install libpam-dev lcov python3-pip python3-dev cmake bison flex byacc g++ autoconf automake libtool lcov -y
- name: Install cython
run: sudo pip install cython
- name: Initialize submodules
run: |
git submodule update --init --recursive
pushd googletest/googletest
git checkout release-1.8.0
cmake -DBUILD_SHARED_LIBS=ON .
make
popd
- name: Automake
run: |
test -d m4 || mkdir m4
autoreconf -fi
rm -fr autom4te.cache
- name: Run configure with systemd disabled
run: CFLAGS="$CFLAGS -Werror" ./configure --sysconfdir=/etc --localstatedir=/var --enable-code-coverage --enable-opaque-hierarchy="name=systemd" --enable-python --enable-systemd=no --enable-samples
- name: Build the library
run: make
- run: lcov -i -d . -c -o lcov.base
shell: bash
- name: Run the unit tests
run: |
pushd tests/gunit
make check
popd
- name: Run the functional tests
run: |
pushd src/python/build/lib.*
export PYTHONPATH=$PYTHONPATH:$(pwd)
popd
pushd tests/ftests
./ftests.py -l 10 -L ftests.log
./ftests.py -l 10 -L ftests-nocontainer.log --skip 38,77,81 --no-container
popd
- name: Archive test logs
if: ${{ always() }}
uses: actions/upload-artifact@v4
with:
name: No systemd test logs
path: ./*.log
- name: Collate code coverage results
uses: ./.github/actions/code-coverage
- name: Upload code coverage results
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: ./lcov.total
flag-name: "No systemd Functional Tests"
parallel: True
- name: Archive code coverage results
if: ${{ always() }}
uses: actions/upload-artifact@v4
with:
name: No systemd Code Coverage
path: lcov.*
functionaltestsv1:
name: Cgroup v1 Functional Tests
runs-on: ubuntu-20.04
steps:
- name: Install container dependencies
run: |
sudo apt-get update
sudo apt-get install lxc lxd-installer
- uses: actions/checkout@v4
with:
submodules: false
- name: Initialize the directory
uses: ./.github/actions/setup-libcgroup
- name: Run functional tests
run: |
# The cgroup v1 runner hosted by Github Actions doesn't allow
# for exclusive cpusets. Thus, skip the cpuset automated test
pushd src/python/build/lib.*
export PYTHONPATH=$PYTHONPATH:$(pwd)
popd
pushd tests/ftests
./ftests.py -l 10 -L ftests.log
./ftests.py -l 10 -L ftests-nocontainer.log --skip 38 --no-container
popd
- name: Archive test logs
if: ${{ always() }}
uses: actions/upload-artifact@v4
with:
name: Cgroup v1 test logs
path: ./*.log
- name: Collate code coverage results
uses: ./.github/actions/code-coverage
- name: Upload code coverage results
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: ./lcov.total
flag-name: "Cgroup v1 Functional Tests"
parallel: True
- name: Archive code coverage results
if: ${{ always() }}
uses: actions/upload-artifact@v4
with:
name: Cgroup v1 Code Coverage
path: lcov.*
functionaltestsv1v2:
name: Cgroup v1/v2 Functional Tests
runs-on: ubuntu-20.04
steps:
- name: Mount cpuset cgroup v2 controller
run: |
# unmount the cpuset v1 controller. This should make it available
# in the v2 hierarchy after all references have been freed
sudo umount /sys/fs/cgroup/cpuset
# wait for the references to the cpuset controller to go away
sleep 30
cat /sys/fs/cgroup/unified/cgroup.controllers
sudo su -c "echo +cpuset > /sys/fs/cgroup/unified/cgroup.subtree_control"
cat /sys/fs/cgroup/unified/cgroup.subtree_control
- name: Install container dependencies
run: |
sudo apt-get update
sudo apt-get install lxc lxd-installer
- uses: actions/checkout@v4
with:
submodules: false
- name: Initialize the directory
uses: ./.github/actions/setup-libcgroup
- name: Run functional tests
run: |
pushd src/python/build/lib.*
export PYTHONPATH=$PYTHONPATH:$(pwd)
popd
pushd tests/ftests
make check
popd
- name: Display test logs
if: ${{ always() }}
run: |
cat tests/ftests/ftests-wrapper.sh.log
- name: Archive test logs
if: ${{ always() }}
uses: actions/upload-artifact@v4
with:
name: Cgroup v1v2 test logs
path: tests/ftests/*.log
- name: Collate code coverage results
uses: ./.github/actions/code-coverage
- name: Upload code coverage results
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: ./lcov.total
flag-name: "Cgroup v1/v2 Functional Tests"
parallel: True
- name: Archive code coverage results
if: ${{ always() }}
uses: actions/upload-artifact@v4
with:
name: Cgroup v1v2 Code Coverage
path: lcov.*
functionaltestsv2:
name: Cgroup v2 Functional Tests
runs-on: ubuntu-22.04
steps:
- name: Install container dependencies
run: |
sudo apt-get update
sudo apt-get install lxc lxd-installer
- uses: actions/checkout@v4
with:
submodules: false
- name: Initialize the directory
uses: ./.github/actions/setup-libcgroup
- name: Run functional tests
run: |
pushd src/python/build/lib.*
export PYTHONPATH=$PYTHONPATH:$(pwd)
popd
pushd tests/ftests
./ftests.py -l 10 -L ftests.log
./ftests.py -l 10 -L ftests-nocontainer.log --no-container
popd
- name: Archive test logs
if: ${{ always() }}
uses: actions/upload-artifact@v4
with:
name: Cgroup v2 test logs
path: ./*.log
- name: Collate code coverage results
uses: ./.github/actions/code-coverage
- name: Upload code coverage results
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: ./lcov.total
flag-name: "Cgroup v2 Functional Tests"
parallel: True
- name: Archive code coverage results
if: ${{ always() }}
uses: actions/upload-artifact@v4
with:
name: Cgroup v2 Code Coverage
path: lcov.*
finalize:
name: Finalize the test run
if: ${{ always() }}
needs: [unittests, functionaltestsv1, functionaltestsv1v2, functionaltestsv2,
nosystemd]
runs-on: ubuntu-latest
steps:
- name: Finalize code coverage results
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
parallel-finished: True