Skip to content

Commit 9ca6a7e

Browse files
committed
Disable arm64 criu testing in GH Actions
Due to current 100% failure rate on arm64 with the current OS image, disable criu testing for now Signed-off-by: Phil Estes <[email protected]>
1 parent 70db1bd commit 9ca6a7e

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -405,7 +405,9 @@ jobs:
405405
script/setup/install-critools
406406
script/setup/install-failpoint-binaries
407407
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
409411
run: |
410412
sudo add-apt-repository -y ppa:criu/ppa
411413
sudo apt-get update
@@ -501,7 +503,8 @@ jobs:
501503
if: matrix.os == 'ubuntu-24.04-arm'
502504
run: sudo apt-get install -y buildah podman
503505

504-
- name: Checkpoint/Restore via CRI
506+
- if: matrix.os != 'ubuntu-24.04-arm'
507+
name: Checkpoint/Restore via CRI
505508
env:
506509
TEST_RUNTIME: ${{ matrix.runtime }}
507510
CGROUP_DRIVER: ${{ matrix.cgroup_driver }}

0 commit comments

Comments
 (0)