Skip to content

Commit d844444

Browse files
committed
ci: build wheels for linux-aarch64
1 parent f9a45be commit d844444

File tree

1 file changed

+43
-0
lines changed

1 file changed

+43
-0
lines changed
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
name: Build Linux Aarch64 Wheels
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches:
7+
- main
8+
- nightly
9+
workflow_dispatch:
10+
11+
jobs:
12+
generate-matrix:
13+
uses: pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml@main
14+
with:
15+
package-type: wheel
16+
os: linux-aarch64
17+
test-infra-repository: pytorch/test-infra
18+
test-infra-ref: main
19+
with-cuda: enable
20+
with-rocm: disable
21+
with-cpu: disable
22+
# TODO: Python free threading builds are broken due to newer openssl
23+
# requirements.
24+
python-versions: '["3.10","3.11","3.12","3.13","3.14"]'
25+
build:
26+
needs: generate-matrix
27+
name: ${{ matrix.repository }}
28+
uses: pytorch/test-infra/.github/workflows/build_wheels_linux.yml@main
29+
with:
30+
repository: meta-pytorch/torchcomms
31+
ref: ""
32+
pre-script: ""
33+
post-script: ""
34+
build-platform: "python-build-package"
35+
build-command: "scripts/_build_wheel.sh"
36+
smoke-test-script: "scripts/smoke_test.py"
37+
package-name: torchcomms
38+
test-infra-repository: pytorch/test-infra
39+
test-infra-ref: main
40+
build-matrix: ${{ needs.generate-matrix.outputs.matrix }}
41+
trigger-event: ${{ github.event_name }}
42+
architecture: aarch64
43+
#setup-miniconda: false

0 commit comments

Comments
 (0)