From b4a53e8264dd6cc93573630c0e59902eaa822886 Mon Sep 17 00:00:00 2001 From: Akhil Mohan Date: Wed, 16 Apr 2025 22:07:23 +0530 Subject: [PATCH] disable portmap test in ubuntu-22 to make CI happy Signed-off-by: Akhil Mohan (cherry picked from commit 338e0a1266302fed4b52a852735b90a832ad2b0f) (cherry picked from commit 70db1bd00fb5db7c3958da4aefac0c41c89bb654) Signed-off-by: Derek McGowan --- .github/workflows/ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e7e6f20bc..3510fe162 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -486,8 +486,12 @@ jobs: TEST_RUNTIME: ${{ matrix.runtime }} CGROUP_DRIVER: ${{ matrix.cgroup_driver }} run: | + # skipping the ipv6 test till https://github.com/actions/runner-images/issues/11985 is fixed + if [[ ${{matrix.os}} == "ubuntu-22.04" ]]; then + skip_test="runtime should support port mapping with host port and container port" + fi env - sudo -E PATH=$PATH ./script/critest.sh "${{github.workspace}}/report" + sudo -E PATH=$PATH SKIP_TEST="$skip_test" ./script/critest.sh "${{github.workspace}}/report" # Log the status of this VM to investigate issues like # https://github.com/containerd/containerd/issues/4969