Skip to content

Commit 3442013

Browse files
committed
workflows: add Linux aarch64 builds
Use GitHub's paid support for ARM64 runners, pending the free offering scheduled for later this year. Signed-off-by: Benjamin Gilbert <[email protected]>
1 parent c88f015 commit 3442013

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/python.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
runs-on: ${{ matrix.os }}
4343
strategy:
4444
matrix:
45-
os: [ubuntu-latest, macos-latest]
45+
os: [ubuntu-latest, ubuntu-24.04-aarch64, macos-latest]
4646
python-version: [3.8, 3.9, "3.10", "3.11", "3.12", "3.13-dev"]
4747
openslide: [system, wheel]
4848
include:
@@ -96,6 +96,10 @@ jobs:
9696
echo OS_ARCH_TAG=linux-x86_64 >> $GITHUB_ENV
9797
sudo apt-get install libopenslide0
9898
;;
99+
ubuntu-24.04-aarch64)
100+
echo OS_ARCH_TAG=linux-aarch64 >> $GITHUB_ENV
101+
sudo apt-get install libopenslide0
102+
;;
99103
macos-latest)
100104
echo OS_ARCH_TAG=macos-arm64-x86_64 >> $GITHUB_ENV
101105
echo DYLD_LIBRARY_PATH=/opt/homebrew/lib >> $GITHUB_ENV

0 commit comments

Comments
 (0)