-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci/cirrus: enable rootless tests on cs9
We were not running localrootlessintegration test on CentOS Stream 9 because of some failures fixed by previous commits. Enable rootless integration with both systemd and fs drivers. Signed-off-by: Kir Kolyshkin <[email protected]>
- Loading branch information
Showing
1 changed file
with
13 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -111,6 +111,11 @@ task: | |
centos-stream-9) | ||
dnf config-manager --set-enabled crb # for glibc-static | ||
dnf -y install epel-release epel-next-release # for fuse-sshfs | ||
# Delegate all cgroup v2 controllers to rootless user via --systemd-cgroup. | ||
# The default (since systemd v252) is "pids memory cpu". | ||
mkdir -p /etc/systemd/system/[email protected] | ||
printf "[Service]\nDelegate=yes\n" > /etc/systemd/system/[email protected]/delegate.conf | ||
systemctl daemon-reload | ||
;; | ||
esac | ||
# Work around dnf mirror failures by retrying a few times. | ||
|
@@ -175,13 +180,19 @@ task: | |
integration_fs_script: | | ||
ssh -tt localhost "make -C /home/runc localintegration" | ||
integration_systemd_rootless_script: | | ||
echo "SKIP: integration_systemd_rootless_script requires cgroup v2" | ||
case $DISTRO in | ||
centos-7|centos-stream-8) | ||
echo "SKIP: integration_systemd_rootless_script requires cgroup v2" | ||
;; | ||
*) | ||
ssh -tt localhost "make -C /home/runc localrootlessintegration RUNC_USE_SYSTEMD=yes" | ||
esac | ||
integration_fs_rootless_script: | | ||
case $DISTRO in | ||
centos-7) | ||
echo "SKIP: FIXME: integration_fs_rootless_script is skipped because of EPERM on writing cgroup.procs" | ||
;; | ||
centos-stream-8) | ||
*) | ||
ssh -tt localhost "make -C /home/runc localrootlessintegration" | ||
;; | ||
esac |