mirror of
https://github.com/opencontainers/runc.git
synced 2025-12-24 11:50:58 +08:00
Package criu-4.1-1 has a known bug [1] which is fixed in criu-4.1-2 [2], which is currently only available in updates-testing. Add a kludge to install newer criu if necessary to fix CI. This will not be needed in ~2 weeks once the new package is promoted to updates. [1]: https://github.com/checkpoint-restore/criu/issues/2650 [2]: https://bodhi.fedoraproject.org/updates/FEDORA-2025-d374d8ce17 Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
34 lines
1.2 KiB
Bash
Executable File
34 lines
1.2 KiB
Bash
Executable File
#!/bin/bash
|
|
set -eux -o pipefail
|
|
DNF=(dnf -y --setopt=install_weak_deps=False --setopt=tsflags=nodocs --exclude="kernel,kernel-core")
|
|
RPMS=(bats git-core glibc-static golang jq libseccomp-devel make)
|
|
# Work around dnf mirror failures by retrying a few times.
|
|
for i in $(seq 0 2); do
|
|
sleep "$i"
|
|
"${DNF[@]}" update && "${DNF[@]}" install "${RPMS[@]}" && break
|
|
done
|
|
|
|
# criu-4.1-1 has a known bug (https://github.com/checkpoint-restore/criu/issues/2650)
|
|
# which is fixed in criu-4.1-2 (currently in updates-testing). TODO: remove this later.
|
|
if [[ $(rpm -q criu) == "criu-4.1-1.fc"* ]]; then
|
|
"${DNF[@]}" --enablerepo=updates-testing update criu
|
|
fi
|
|
|
|
dnf clean all
|
|
|
|
# To avoid "avc: denied { nosuid_transition }" from SELinux as we run tests on /tmp.
|
|
mount -o remount,suid /tmp
|
|
|
|
# Setup rootless user.
|
|
"$(dirname "${BASH_SOURCE[0]}")"/setup_rootless.sh
|
|
|
|
# Delegate cgroup v2 controllers to rootless user via --systemd-cgroup
|
|
mkdir -p /etc/systemd/system/user@.service.d
|
|
cat >/etc/systemd/system/user@.service.d/delegate.conf <<EOF
|
|
[Service]
|
|
# default: Delegate=pids memory
|
|
# NOTE: delegation of cpuset requires systemd >= 244 (Fedora >= 32, Ubuntu >= 20.04).
|
|
Delegate=yes
|
|
EOF
|
|
systemctl daemon-reload
|