File tree Expand file tree Collapse file tree 1 file changed +64
-0
lines changed Expand file tree Collapse file tree 1 file changed +64
-0
lines changed Original file line number Diff line number Diff line change 1+ name : torchvision Build
2+
3+ on :
4+ workflow_dispatch :
5+ inputs :
6+ python_version :
7+ description : " Python version"
8+ required : true
9+ type : choice
10+ options :
11+ - Python312
12+ - Python311
13+ msvc_version :
14+ description : " MSVC Version"
15+ required : true
16+ type : choice
17+ options :
18+ - ' latest'
19+ - ' 14.40'
20+ - ' 14.36'
21+ pytorch_build_run_id :
22+ description : " PyTorch build run id for downloading the wheel artifact (number at the end of build run URL)"
23+ required : true
24+ default : " "
25+ type : string
26+ pytorch_build_artifact_name :
27+ description : " Artifact name of PyTorch build run"
28+ required : true
29+ default : " pytorch-wheel"
30+ type : string
31+ build_type :
32+ description : " Build type"
33+ required : true
34+ type : choice
35+ options :
36+ - Release
37+ # - Debug (not supported for wheel)
38+ repository_name :
39+ description : " torchvision repository (username/repo)"
40+ required : true
41+ default : " pytorch/vision"
42+ type : string
43+ repository_branch :
44+ description : " repository branch"
45+ required : true
46+ default : " main"
47+ type : string
48+ build_version :
49+ description : " Optional: build version for wheel file name (e.g. 2.6.0); otherwise leave empty for default naming"
50+ required : false
51+ default : " 2.6.0"
52+ type : string
53+
54+ jobs :
55+ trigger-test-infra :
56+ uses : alinpahontu2912/test-infra/.github/workflows/build_wheels_windows_arm64.yml@main
57+ with :
58+ repository_name : ${{ inputs.repository_name }}
59+ repository_branch : ${{ inputs.repository_branch }}
60+ python_version : ${{ inputs.python_version }}
61+ msvc_version : ${{ inputs.msvc_version }}
62+ pytorch_build_run_id : ${{ inputs.pytorch_build_run_id }}
63+ build_type : ${{ inputs.build_type }}
64+ build_version : ${{ inputs.build_version }}
You can’t perform that action at this time.
0 commit comments