From c9a0190f0769129627bcdef4d12d8900f6210a5f Mon Sep 17 00:00:00 2001 From: Ahmed Elaidy Date: Mon, 9 Mar 2026 15:33:08 +0200 Subject: [PATCH] ci: mark archlinux-test as continue-on-error archlinux:latest is a rolling-release image and pacman -Syu pulls the latest packages on every build. Failures caused by upstream package churn or mirror outages are beyond CRIU's control and should not block merges. The cross-compile job already uses continue-on-error: true for its experimental targets; apply the same treatment to archlinux-test. Fixes: #2911 Signed-off-by: Ahmed Elaidy --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 90fba585c..a3363fbea 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -53,6 +53,9 @@ jobs: archlinux-test: needs: [alpine-test] + # archlinux:latest + pacman -Syu is a rolling-release build; failures + # caused by upstream package churn are outside CRIU's control. + continue-on-error: true runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v4