File tree Expand file tree Collapse file tree 3 files changed +16
-2
lines changed Expand file tree Collapse file tree 3 files changed +16
-2
lines changed Original file line number Diff line number Diff line change @@ -479,10 +479,17 @@ jobs:
479
479
run : |
480
480
CONTAINERD_RUNTIME=$TEST_RUNTIME make cri-integration
481
481
482
+ - name : Fix up for actuated
483
+ # https://github.com/containerd/containerd/pull/9920#issuecomment-2024823587
484
+ if : ${{ (matrix.os == 'actuated-arm64-4cpu-16gb') && (matrix.runc == 'crun') }}
485
+ run : |
486
+ echo "EXTRA_CRITEST_OPTIONS=--ginkgo.skip=runtime should support NamespaceMode_POD" >> $GITHUB_ENV
487
+
482
488
- name : cri-tools critest
483
489
env :
484
490
TEST_RUNTIME : ${{ matrix.runtime }}
485
491
run : |
492
+ env
486
493
sudo -E PATH=$PATH ./script/critest.sh "${{github.workspace}}/report"
487
494
488
495
# Log the status of this VM to investigate issues like
Original file line number Diff line number Diff line change @@ -35,6 +35,13 @@ cat > ${BDIR}/config.toml <<EOF
35
35
version = 2
36
36
[plugins."io.containerd.grpc.v1.cri".containerd.runtimes.runc]
37
37
runtime_type = "${TEST_RUNTIME} "
38
+ [plugins."io.containerd.snapshotter.v1.overlayfs"]
39
+ # slow_chown is needed to avoid an error with kernel < 5.19:
40
+ # > "snapshotter \"overlayfs\" doesn't support idmap mounts on this host,
41
+ # > configure \` slow_chown\` to allow a slower and expensive fallback"
42
+ # https://github.com/containerd/containerd/pull/9920#issuecomment-1978901454
43
+ # This is safely ignored for kernel >= 5.19.
44
+ slow_chown = true
38
45
EOF
39
46
ls /etc/cni/net.d
40
47
51
58
crictl --runtime-endpoint ${BDIR} /c.sock info && break || sleep 1
52
59
done
53
60
54
- critest --report-dir " $report_dir " --runtime-endpoint=unix:///${BDIR} /c.sock --parallel=8
61
+ critest --report-dir " $report_dir " --runtime-endpoint=unix:///${BDIR} /c.sock --parallel=8 " ${EXTRA_CRITEST_OPTIONS :- " " } "
Original file line number Diff line number Diff line change 1
- v1.29 .0
1
+ v1.30 .0
You can’t perform that action at this time.
0 commit comments