From 553c74de8eeade62d332fd2f6dc4da238c1e16db Mon Sep 17 00:00:00 2001 From: Kir Kolyshkin Date: Tue, 12 Aug 2025 14:42:58 -0700 Subject: [PATCH] [1.3] ci: use criu built from source on gha arm Currently, criu package from opensuse build farm times out on GHA arm, so let's only use criu-dev (i.e. compiled from source on CI machine). Once this is fixed, this patch can be reverted. Related to criu issue 2709. Signed-off-by: Kir Kolyshkin (Cherry-picked from commit 105674844eaaf24bf14135ef0c64703e511882ab.) Signed-off-by: Aleksa Sarai --- .github/workflows/test.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e3d86bdd0..9d1676a8e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -35,13 +35,18 @@ jobs: go-version: 1.22.x - criu: criu-dev go-version: 1.23.x + os: ubuntu-24.04 - criu: criu-dev rootless: rootless + os: ubuntu-24.04 # Do race detection only on latest Go. - race: -race go-version: 1.22.x - race: -race go-version: 1.23.x + # CRIU package 4.1-1 from opensuse build farm doesn't work on arm. + - os: ubuntu-24.04-arm + criu: "" runs-on: ${{ matrix.os }}