From 06aaac5604688ef7d928c36e815348bf653df58b Mon Sep 17 00:00:00 2001 From: Ryo Nakano Date: Sun, 20 Apr 2025 16:48:27 +0900 Subject: [PATCH] chore: Use arm runner instead of qemu --- .github/workflows/ci.yml | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 27af3d3..ed6581d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,11 +5,15 @@ on: [pull_request] jobs: flatpak: name: Flatpak - runs-on: ubuntu-latest + runs-on: ${{ matrix.runs-on }} strategy: matrix: - arch: [x86_64, aarch64] + include: + - arch: x86_64 + runs-on: ubuntu-latest + - arch: aarch64 + runs-on: ubuntu-24.04-arm # Don't fail the whole workflow if one architecture fails fail-fast: false @@ -21,12 +25,6 @@ jobs: - name: Checkout uses: actions/checkout@v4 - - name: Set up QEMU for aarch64 emulation - if: ${{ matrix.arch != 'x86_64' }} - uses: docker/setup-qemu-action@v3 - with: - platforms: arm64 - - name: Build uses: flatpak/flatpak-github-actions/flatpak-builder@v6 with: