Skip to content

Commit 78f5c8f

Browse files
authored
Update build_wheels_macos.yml
1 parent f892864 commit 78f5c8f

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

.github/workflows/build_wheels_macos.yml

+10-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# From https://github.com/pytorch/test-infra/wiki/Using-Nova-Reusable-Build-Workflows
2-
name: Build Linux Wheels
2+
name: Build Mac Wheels
33

44
on:
55
pull_request:
@@ -20,9 +20,14 @@ on:
2020
workflow_dispatch:
2121

2222
jobs:
23-
23+
generate-matrix:
24+
uses: pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml@main
25+
with:
26+
package-type: wheel
27+
os: macos
2428

2529
build:
30+
needs: generate-matrix
2631
permissions:
2732
id-token: write
2833
contents: read
@@ -33,11 +38,14 @@ jobs:
3338
# triggered daily from main with a schedule
3439
repository: pytorch/ao
3540
ref: ""
41+
build-matrix: ${{ needs.generate-matrix.outputs.matrix }}
3642
env-var-script: packaging/env_var_script_linux.sh
3743
pre-script: packaging/pre_build_script.sh
3844
post-script: packaging/post_build_script.sh
3945
smoke-test-script: packaging/smoke_test.py
4046
package-name: torchao
4147
trigger-event: ${{ github.event_name }}
48+
# This is the CUDA version to be uploaded to torchao-nightly pypi
49+
# upload-to-pypi: cu121
4250
secrets:
4351
PYPI_API_TOKEN: ${{ secrets.PYPI_API_TOKEN }}

0 commit comments

Comments
 (0)