From c432595c8a83eac119b6829fd364741994c08eb6 Mon Sep 17 00:00:00 2001 From: Cezar Craciunoiu <cezar.craciunoiu@unikraft.io> Date: Tue, 21 Jan 2025 13:15:12 +0200 Subject: [PATCH] fix(workflows): Remove incompatible new arm runners The arm runners can't run docker currently, failing with some cgroup isolation error from systemd. We disable them and will retry after they exit Preview. Signed-off-by: Cezar Craciunoiu <cezar.craciunoiu@unikraft.io> --- .github/workflows/tests-stable.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests-stable.yaml b/.github/workflows/tests-stable.yaml index 90ad65e8f..79b099d8a 100644 --- a/.github/workflows/tests-stable.yaml +++ b/.github/workflows/tests-stable.yaml @@ -9,7 +9,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-24.04, ubuntu-22.04, ubuntu-24.04-arm, ubuntu-22.04-arm, macos-13, macos-14, macos-15] + os: [ubuntu-24.04, ubuntu-22.04, macos-13, macos-14, macos-15] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4