Skip to content

Commit e5e8f33

Browse files
committed
.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 <[email protected]>
1 parent e8bec1b commit e5e8f33

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.cirrus.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,11 @@ task:
192192
integration_fs_rootless_script: |
193193
case $DISTRO in
194194
centos-7)
195-
echo "SKIP: FIXME: integration_fs_rootless_script is skipped because of EPERM on writing cgroup.procs"
195+
# Most probably EPERM on cgroup.procs is caused by some missing kernel
196+
# patch. The other issue is SELinux, but even with SELinux fixes in
197+
# https://github.com/opencontainers/runc/pull/4068 it still doesn't work.
198+
# Does not make sense in trying to fix this since it's an older distro.
199+
echo "SKIP: integration_fs_rootless_script is skipped because of EPERM on writing cgroup.procs"
196200
;;
197201
*)
198202
ssh -tt localhost "make -C /home/runc localrootlessintegration"

0 commit comments

Comments
 (0)