We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5cfeb3 commit 7d154c4Copy full SHA for 7d154c4
1 file changed
.github/workflows/pydevd-release-manylinux.yml
@@ -12,11 +12,15 @@ on:
12
13
jobs:
14
build:
15
- runs-on: ${{ matrix.os }}
+ runs-on: ${{ matrix.runs-on }}
16
strategy:
17
fail-fast: false
18
matrix:
19
- os: [ubuntu-latest]
+ include:
20
+ - runs-on: ubuntu-latest
21
+ arch: x86_64
22
+ - runs-on: ubuntu-24.04-arm
23
+ arch: aarch64
24
steps:
25
- uses: actions/checkout@v4
26
@@ -34,9 +38,11 @@ jobs:
34
38
env:
35
39
CIBW_SKIP: pp* cp36-* cp37-*
36
40
CIBW_BUILD_VERBOSITY: 1
41
+ CIBW_ARCHS: ${{ matrix.arch }}
37
42
43
- uses: actions/upload-artifact@v4
44
with:
45
+ name: wheels-${{ matrix.arch }}
46
path: ./wheelhouse/*.whl
47
48
- name: Upload to PyPI .whl
0 commit comments