From 93f540a10a30d03eb0b0aff32de6ad908ffdda9a Mon Sep 17 00:00:00 2001 From: Rui Ueyama Date: Mon, 10 Feb 2025 12:52:26 +0900 Subject: [PATCH] Use x86 GitHub runners It looks like Qemu on ARM64 is unstable on ARM64 runners. I observed occasional failures with SEGV. --- .github/workflows/build-all.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-all.yml b/.github/workflows/build-all.yml index 8977c2d637..3a0182fc38 100644 --- a/.github/workflows/build-all.yml +++ b/.github/workflows/build-all.yml @@ -15,10 +15,10 @@ jobs: - { target: x86_64, os: ubuntu-24.04 } - { target: aarch64, os: ubuntu-24.04-arm } - { target: arm, os: ubuntu-24.04-arm } - - { target: riscv64, os: ubuntu-24.04-arm } - - { target: ppc64le, os: ubuntu-24.04-arm } - - { target: s390x, os: ubuntu-24.04-arm } - - { target: loongarch64, os: ubuntu-24.04-arm } + - { target: riscv64, os: ubuntu-24.04 } + - { target: ppc64le, os: ubuntu-24.04 } + - { target: s390x, os: ubuntu-24.04 } + - { target: loongarch64, os: ubuntu-24.04 } runs-on: ${{ matrix.os }}