From 549374d34c7f6d00d7ea787db3559a165a6dc72e Mon Sep 17 00:00:00 2001 From: daimond113 <72147841+daimond113@users.noreply.github.com> Date: Thu, 16 Jan 2025 22:20:43 +0100 Subject: [PATCH] ci: add linux aarch64 builds --- .github/workflows/debug.yml | 5 +++++ .github/workflows/release.yaml | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/.github/workflows/debug.yml b/.github/workflows/debug.yml index a23a13d..169325d 100644 --- a/.github/workflows/debug.yml +++ b/.github/workflows/debug.yml @@ -40,6 +40,11 @@ jobs: runs-on: ubuntu-latest artifact-name: pesde-debug-${{ needs.get-version.outputs.version }}-linux-x86_64 + - job-name: linux-aaarch64 + target: aarch64-unknown-linux-gnu + runs-on: ubuntu-24.04-arm + artifact-name: pesde-debug-${{ needs.get-version.outputs.version }}-linux-aarch64 + - job-name: macos-x86_64 target: x86_64-apple-darwin runs-on: macos-13 diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index f30c058..841fb1a 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -51,6 +51,11 @@ jobs: arch: x86_64 target: x86_64-unknown-linux-gnu + - os: ubuntu-24.04-arm + host: linux + arch: aarch64 + target: aarch64-unknown-linux-gnu + - os: windows-latest host: windows arch: x86_64