From 9d733b626f158240ecf642aea9f2d650b1c4046d Mon Sep 17 00:00:00 2001 From: Kir Kolyshkin Date: Mon, 13 May 2024 17:43:45 -0700 Subject: [PATCH] .cirrus.yml: rm FIXME from rootless fs on CentOS 7 I tried to fix it, but it looks like older CentOS 7 kernel is the ultimate reason why it doesn't work. So, remove FIXME and add some explanation. Signed-off-by: Kir Kolyshkin --- .cirrus.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.cirrus.yml b/.cirrus.yml index d79db495a0c..cdf1669d33a 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -192,7 +192,10 @@ task: 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" + # Most probably EPERM on cgroup.procs is caused by some missing kernel + # patch. The other issue is SELinux, but even with SELinux fixes in + # https://github.com/opencontainers/runc/pull/4068 it still doesn't work. + echo "SKIP: integration_fs_rootless_script is skipped because of EPERM on writing cgroup.procs" ;; *) ssh -tt localhost "make -C /home/runc localrootlessintegration"