We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 15cbedf commit 7f7798eCopy full SHA for 7f7798e
.github/workflows/build.yml
@@ -35,7 +35,7 @@ jobs:
35
strategy:
36
fail-fast: false
37
matrix:
38
- os: ["ubuntu-latest", "windows-latest", "macos-latest"]
+ os: ["ubuntu-latest", "windows-latest", "macos-latest", "ubuntu-24.04-arm"]
39
steps:
40
- uses: actions/checkout@v4
41
- name: Set up Python 3.12
@@ -87,6 +87,16 @@ jobs:
87
args: -m packages/pyo3/Cargo.toml --release --sdist
88
manylinux: 2014
89
90
+ - uses: PyO3/maturin-action@v1
91
+ if: ${{ matrix.os == 'ubuntu-24.04-arm' }}
92
+ name: Maturin Build for Linux
93
+ with:
94
+ maturin-version: 1.4.0
95
+ command: build
96
+ target: aarch64
97
+ args: -m packages/pyo3/Cargo.toml --release --sdist
98
+ manylinux: 2014
99
+
100
- name: Python Unittests
101
run: |
102
cd packages/pyo3
0 commit comments