Skip to content

Commit

Permalink
Merge pull request #4279 from kolyshkin/rm-fixme
Browse files Browse the repository at this point in the history
.cirrus.yml: rm FIXME from rootless fs on CentOS 7
  • Loading branch information
lifubang committed May 14, 2024
2 parents e8bec1b + e5e8f33 commit 9d02c20
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,11 @@ 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.
# Does not make sense in trying to fix this since it's an older distro.
echo "SKIP: integration_fs_rootless_script is skipped because of EPERM on writing cgroup.procs"
;;
*)
ssh -tt localhost "make -C /home/runc localrootlessintegration"
Expand Down

0 comments on commit 9d02c20

Please sign in to comment.