Skip to content

Commit 1c9fe04

Browse files
committed
WIP: test on Linux aarch64
- needs stable openslide-bin linux-aarch64 binaries
1 parent 52a57e8 commit 1c9fe04

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/python.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,10 @@ jobs:
4141
needs: pre-commit
4242
runs-on: ${{ matrix.os }}
4343
strategy:
44+
# FIXME: for testing
45+
fail-fast: false
4446
matrix:
45-
os: [ubuntu-latest, macos-latest]
47+
os: [ubuntu-latest, ubuntu-24.04-aarch64, macos-latest]
4648
python-version: [3.8, 3.9, "3.10", "3.11", "3.12", "3.13-dev"]
4749
openslide: [system, wheel]
4850
include:
@@ -96,6 +98,10 @@ jobs:
9698
echo OS_ARCH_TAG=linux-x86_64 >> $GITHUB_ENV
9799
sudo apt-get install libopenslide0
98100
;;
101+
ubuntu-24.04-aarch64)
102+
echo OS_ARCH_TAG=linux-aarch64 >> $GITHUB_ENV
103+
sudo apt-get install libopenslide0
104+
;;
99105
macos-latest)
100106
echo OS_ARCH_TAG=macos-arm64-x86_64 >> $GITHUB_ENV
101107
echo DYLD_LIBRARY_PATH=/opt/homebrew/lib >> $GITHUB_ENV

0 commit comments

Comments
 (0)