Skip to content

Commit a3a8a2e

Browse files
authored
Merge pull request #4736 from kolyshkin/fedora-skip-criu-41
ci: update to criu-4.1-2 on Fedora
2 parents b60a77a + 3e3e048 commit a3a8a2e

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

script/setup_host_fedora.sh

+7
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ for i in $(seq 0 2); do
77
sleep "$i"
88
"${DNF[@]}" update && "${DNF[@]}" install "${RPMS[@]}" && break
99
done
10+
11+
# criu-4.1-1 has a known bug (https://github.com/checkpoint-restore/criu/issues/2650)
12+
# which is fixed in criu-4.1-2 (currently in updates-testing). TODO: remove this later.
13+
if [[ $(rpm -q criu) == "criu-4.1-1.fc"* ]]; then
14+
"${DNF[@]}" --enablerepo=updates-testing update criu
15+
fi
16+
1017
dnf clean all
1118

1219
# To avoid "avc: denied { nosuid_transition }" from SELinux as we run tests on /tmp.

0 commit comments

Comments
 (0)