Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: Add ARM64 #317

Merged
merged 1 commit into from
Jan 19, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
ci: Add ARM64
lhmouse committed Jan 19, 2025
commit 7c9cce1fa11acd46634cdaf2e10fd57010c43f3c
24 changes: 24 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -39,6 +39,30 @@ jobs:
meson setup -Denable-debug-checks=true -Doptimization=1 build_ci
&& meson test -Cbuild_ci

ubuntu-arm:
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