File tree 2 files changed +36
-1
lines changed
2 files changed +36
-1
lines changed Original file line number Diff line number Diff line change
1
+ name : Nftables bases testing
2
+
3
+ on : [push, pull_request]
4
+
5
+ # Cancel any preceding run on the pull request.
6
+ concurrency :
7
+ group : nftables-test-${{ github.event.pull_request.number || github.ref }}
8
+ cancel-in-progress : ${{ github.ref != 'refs/heads/criu-dev' }}
9
+
10
+ jobs :
11
+ build :
12
+ runs-on : ubuntu-24.04
13
+ steps :
14
+ - uses : actions/checkout@v4
15
+ - name : Remove iptables
16
+ run : sudo apt remove -y iptables
17
+ - name : Install libnftables-dev
18
+ run : sudo scripts/ci/apt-install libnftables-dev
19
+ - name : chmod 755 /home/runner
20
+ # CRIU's tests are sometimes running as some random user and need
21
+ # to be able to access the test files.
22
+ run : sudo chmod 755 /home/runner
23
+ - name : Build with nftables network locking backend
24
+ run : sudo make -C scripts/ci local COMPILE_FLAGS="NETWORK_LOCK_DEFAULT=NETWORK_LOCK_NFTABLES"
Original file line number Diff line number Diff line change @@ -39,6 +39,10 @@ ci_prep () {
39
39
# This can fail on aarch64 travis
40
40
service apport stop || :
41
41
42
+ # Ubuntu has set up AppArmor in 24.04 so that it blocks use of user
43
+ # namespaces by unprivileged users. We need this for some of our tests.
44
+ sysctl kernel.apparmor_restrict_unprivileged_userns=0 || :
45
+
42
46
if [ " $CLANG " = " 1" ]; then
43
47
# clang support
44
48
CC=clang
@@ -121,8 +125,14 @@ if [ "${CD_TO_TOP}" = "1" ]; then
121
125
fi
122
126
123
127
export GCOV CC
128
+ if [ -z " $COMPILE_FLAGS " ]; then
129
+ LOCAL_COMPILE_FLAGS=(" V=1" )
130
+ else
131
+ IFS=" " read -r -a LOCAL_COMPILE_FLAGS <<< " $COMPILE_FLAGS"
132
+ LOCAL_COMPILE_FLAGS=(" V=1" " ${LOCAL_COMPILE_FLAGS[@]} " )
133
+ fi
124
134
$CC --version
125
- time make CC=" $CC " -j4 V=1
135
+ time make CC=" $CC " -j4 " ${LOCAL_COMPILE_FLAGS[@]} "
126
136
127
137
./criu/criu -v4 cpuinfo dump || :
128
138
./criu/criu -v4 cpuinfo check || :
@@ -150,6 +160,7 @@ ulimit -c unlimited
150
160
cgid=$$
151
161
cleanup_cgroup () {
152
162
./test/zdtm_umount_cgroups $cgid
163
+ dmesg
153
164
}
154
165
trap cleanup_cgroup EXIT
155
166
./test/zdtm_mount_cgroups $cgid
You can’t perform that action at this time.
0 commit comments