File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -130,7 +130,11 @@ jobs:
130130 sudo chmod a+X $HOME # for Ubuntu 22.04 and later
131131
132132 - name : integration test (fs driver)
133- run : sudo -E PATH="$PATH" script -e -c 'make local${{ matrix.rootless }}integration'
133+ # GHA CI itself is run under system.slice, so runc fs2 driver creates containers under it
134+ # (e.g. /system.slice/test_busybox, see cgroups/fs2/defaultpath.go), when unexpectedly
135+ # something moves these to /system.slice/hosted-compute-agent.service). To work around
136+ # this, let's run under machine.slice.
137+ run : sudo -E PATH="$PATH" systemd-run --scope --slice=machine-runc.slice --unit=test script -e -c 'make local${{ matrix.rootless }}integration'
134138
135139 - name : integration test (systemd driver)
136140 run : |
You can’t perform that action at this time.
0 commit comments