Skip to content

Commit 3b065cd

Browse files
fuweidAkihiroSuda
authored andcommitted
CI: skip test in arm64 CI
Co-authored-by: Wei Fu <[email protected]> Signed-off-by: Akihiro Suda <[email protected]>
1 parent 6c3c537 commit 3b065cd

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -479,10 +479,17 @@ jobs:
479479
run: |
480480
CONTAINERD_RUNTIME=$TEST_RUNTIME make cri-integration
481481
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+
482488
- name: cri-tools critest
483489
env:
484490
TEST_RUNTIME: ${{ matrix.runtime }}
485491
run: |
492+
env
486493
sudo -E PATH=$PATH ./script/critest.sh "${{github.workspace}}/report"
487494
488495
# Log the status of this VM to investigate issues like

script/critest.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,4 +58,4 @@ do
5858
crictl --runtime-endpoint ${BDIR}/c.sock info && break || sleep 1
5959
done
6060

61-
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:-""}"

0 commit comments

Comments
 (0)