From 5407cfe4a1e021183b005a1a55f8aebc0a1fc8fa Mon Sep 17 00:00:00 2001 From: Kir Kolyshkin Date: Wed, 12 Nov 2025 15:11:53 -0800 Subject: [PATCH] ci: don't fail CI if criu-dev test fails In view of recent criu-dev failure, let's not fail the required "all-done" job when criu-dev tests fail. Signed-off-by: Kir Kolyshkin --- .github/workflows/test.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5ec5bafa2..bc75ac66a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -131,9 +131,11 @@ jobs: sudo chmod a+X $HOME # for Ubuntu 22.04 and later - name: integration test (fs driver) + continue-on-error: ${{ matrix.criu != '' }} # Don't let criu-dev errors fail CI. run: sudo -E PATH="$PATH" script -e -c 'make local${{ matrix.rootless }}integration' - name: integration test (systemd driver) + continue-on-error: ${{ matrix.criu != '' }} # Don't let criu-dev errors fail CI. run: | # Delegate all cgroup v2 controllers to rootless user via --systemd-cgroup. # The default (since systemd v252) is "pids memory cpu".