You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/ci.yml
+8-2Lines changed: 8 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -405,7 +405,9 @@ jobs:
405
405
script/setup/install-critools
406
406
script/setup/install-failpoint-binaries
407
407
408
-
- name: Install criu
408
+
# Disable criu testing on arm64 until we can solve the consistent failures of restore testing
409
+
- if: matrix.os != 'ubuntu-24.04-arm'
410
+
name: Install criu
409
411
run: |
410
412
sudo add-apt-repository -y ppa:criu/ppa
411
413
sudo apt-get update
@@ -486,8 +488,12 @@ jobs:
486
488
TEST_RUNTIME: ${{ matrix.runtime }}
487
489
CGROUP_DRIVER: ${{ matrix.cgroup_driver }}
488
490
run: |
491
+
# skipping the ipv6 test till https://github.com/actions/runner-images/issues/11985 is fixed
492
+
if [[ ${{matrix.os}} == "ubuntu-22.04" ]]; then
493
+
skip_test="runtime should support port mapping with host port and container port"
0 commit comments