Skip to content

Commit 9d02c20

Browse files
authored
Merge pull request #4279 from kolyshkin/rm-fixme
.cirrus.yml: rm FIXME from rootless fs on CentOS 7
2 parents e8bec1b + e5e8f33 commit 9d02c20

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)