ci: add linux aarch64 builds

Squashed commit of the following:

commit 4d455d4015
Author: daimond113 <72147841+daimond113@users.noreply.github.com>
Date:   Thu Jan 16 22:24:20 2025 +0100

    ci: install aarch64 build deps and fix typo

commit 549374d34c
Author: daimond113 <72147841+daimond113@users.noreply.github.com>
Date:   Thu Jan 16 22:20:43 2025 +0100

    ci: add linux aarch64 builds
This commit is contained in:
daimond113 2025-01-16 22:33:44 +01:00
parent 57afa4c593
commit 684f711d93
No known key found for this signature in database
GPG key ID: 3A8ECE51328B513C
2 changed files with 11 additions and 1 deletions

View file

@ -40,6 +40,11 @@ jobs:
runs-on: ubuntu-latest
artifact-name: pesde-debug-${{ needs.get-version.outputs.version }}-linux-x86_64
- job-name: linux-aarch64
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
@ -58,7 +63,7 @@ jobs:
uses: actions/checkout@v4
- name: Install Linux build dependencies
if: ${{ matrix.runs-on == 'ubuntu-latest' }}
if: ${{ startsWith(matrix.runs-on, 'ubuntu') }}
run: |
sudo apt-get update
sudo apt-get install libdbus-1-dev pkg-config

View file

@ -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