Skip to content

Commit

Permalink
ci: Add ARM64
Browse files Browse the repository at this point in the history
  • Loading branch information
lhmouse committed Jan 19, 2025
1 parent 5a71069 commit 65a5386
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,31 @@ jobs:
meson setup -Denable-debug-checks=true -Doptimization=1 build_ci
&& meson test -Cbuild_ci
jobs:
ubuntu:
name: Ubuntu native build (ARM64)
runs-on: ubuntu-24.04-arm

steps:
- uses: actions/checkout@v4

- name: Install dependencies
run: >-
sudo apt-get update &&
sudo apt-get install -y --no-install-recommends g++-13 python3
pkgconf libedit-dev libpcre2-dev libssl-dev zlib1g-dev uuid-dev
ninja-build python3-pip
- name: Install newest meson
run: >-
sudo pip3 install meson # --break-system-packages
- name: Run tests
run: >-
export CXX='g++-13';
meson setup -Denable-debug-checks=true -Doptimization=1 build_ci
&& meson test -Cbuild_ci
msys2:
name: MSYS2 native build (x86-64)
runs-on: windows-2022
Expand Down

0 comments on commit 65a5386

Please sign in to comment.