File tree 1 file changed +10
-2
lines changed
1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change 1
1
# From https://github.com/pytorch/test-infra/wiki/Using-Nova-Reusable-Build-Workflows
2
- name : Build Linux Wheels
2
+ name : Build Mac Wheels
3
3
4
4
on :
5
5
pull_request :
20
20
workflow_dispatch :
21
21
22
22
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
24
28
25
29
build :
30
+ needs : generate-matrix
26
31
permissions :
27
32
id-token : write
28
33
contents : read
@@ -33,11 +38,14 @@ jobs:
33
38
# triggered daily from main with a schedule
34
39
repository : pytorch/ao
35
40
ref : " "
41
+ build-matrix : ${{ needs.generate-matrix.outputs.matrix }}
36
42
env-var-script : packaging/env_var_script_linux.sh
37
43
pre-script : packaging/pre_build_script.sh
38
44
post-script : packaging/post_build_script.sh
39
45
smoke-test-script : packaging/smoke_test.py
40
46
package-name : torchao
41
47
trigger-event : ${{ github.event_name }}
48
+ # This is the CUDA version to be uploaded to torchao-nightly pypi
49
+ # upload-to-pypi: cu121
42
50
secrets :
43
51
PYPI_API_TOKEN : ${{ secrets.PYPI_API_TOKEN }}
You can’t perform that action at this time.
0 commit comments