Skip to content

Commit 7d154c4

Browse files
Add linux ARM64 wheels (#320)
1 parent b5cfeb3 commit 7d154c4

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

.github/workflows/pydevd-release-manylinux.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,15 @@ on:
1212

1313
jobs:
1414
build:
15-
runs-on: ${{ matrix.os }}
15+
runs-on: ${{ matrix.runs-on }}
1616
strategy:
1717
fail-fast: false
1818
matrix:
19-
os: [ubuntu-latest]
19+
include:
20+
- runs-on: ubuntu-latest
21+
arch: x86_64
22+
- runs-on: ubuntu-24.04-arm
23+
arch: aarch64
2024
steps:
2125
- uses: actions/checkout@v4
2226

@@ -34,9 +38,11 @@ jobs:
3438
env:
3539
CIBW_SKIP: pp* cp36-* cp37-*
3640
CIBW_BUILD_VERBOSITY: 1
41+
CIBW_ARCHS: ${{ matrix.arch }}
3742

3843
- uses: actions/upload-artifact@v4
3944
with:
45+
name: wheels-${{ matrix.arch }}
4046
path: ./wheelhouse/*.whl
4147

4248
- name: Upload to PyPI .whl

0 commit comments

Comments
 (0)