1717 description : " Channel to use (nightly, test, release, all)"
1818 required : true
1919 type : string
20- ref :
21- description : ' Reference to checkout, defaults to empty'
22- default : " "
23- required : false
24- type : string
2520 torchonly :
2621 description : ' Validate torchonly'
2722 default : false
4742 default : false
4843 required : false
4944 type : boolean
45+ use-meta-cdn :
46+ description : ' Use meta cdn for installing pip binaries'
47+ default : false
48+ required : false
49+ type : boolean
5050 use_split_build :
5151 description : |
5252 [Experimental] Use Split Build
8181 - nightly
8282 - test
8383 - all
84- ref :
85- description : ' Reference to checkout, defaults to empty'
86- default : " "
87- required : false
88- type : string
8984 torchonly :
9085 description : ' Validate torchonly'
9186 default : false
111106 default : false
112107 required : false
113108 type : boolean
109+ use-meta-cdn :
110+ description : ' Use meta cdn for installing pip binaries'
111+ default : false
112+ required : false
113+ type : boolean
114114 use_split_build :
115115 description : |
116116 [Experimental] Use Split Build
@@ -136,21 +136,20 @@ jobs:
136136 uses : ./.github/workflows/validate-windows-binaries.yml
137137 with :
138138 channel : ${{ inputs.channel }}
139- ref : ${{ inputs.ref || github.ref }}
140139 torchonly : ${{ inputs.torchonly }}
141140 version : ${{ inputs.version }}
142141 release-matrix : ${{ needs.generate-release-matrix.outputs.matrix }}
143142 use-only-dl-pytorch-org : ${{ inputs.use-only-dl-pytorch-org }}
144143 use-force-reinstall : ${{ inputs.use-force-reinstall }}
145144 use-extra-index-url : ${{ inputs.use-extra-index-url }}
145+ use-meta-cdn : ${{ inputs.use-meta-cdn }}
146146
147147 linux :
148148 if : inputs.os == 'linux' || inputs.os == 'all'
149149 needs : generate-release-matrix
150150 uses : ./.github/workflows/validate-linux-binaries.yml
151151 with :
152152 channel : ${{ inputs.channel }}
153- ref : ${{ inputs.ref || github.ref }}
154153 torchonly : ${{ inputs.torchonly }}
155154 version : ${{ inputs.version }}
156155 release-matrix : ${{ needs.generate-release-matrix.outputs.matrix }}
@@ -159,31 +158,32 @@ jobs:
159158 use-force-reinstall : ${{ inputs.use-force-reinstall }}
160159 use_split_build : ${{ inputs.use_split_build }}
161160 use-extra-index-url : ${{ inputs.use-extra-index-url }}
161+ use-meta-cdn : ${{ inputs.use-meta-cdn }}
162162
163163 linux-aarch64 :
164164 if : inputs.os == 'linux-aarch64' || inputs.os == 'all'
165165 needs : generate-release-matrix
166166 uses : ./.github/workflows/validate-aarch64-linux-binaries.yml
167167 with :
168168 channel : ${{ inputs.channel }}
169- ref : ${{ inputs.ref || github.ref }}
170169 torchonly : ${{ inputs.torchonly }}
171170 version : ${{ inputs.version }}
172171 release-matrix : ${{ needs.generate-release-matrix.outputs.matrix }}
173172 use-only-dl-pytorch-org : ${{ inputs.use-only-dl-pytorch-org }}
174173 use-force-reinstall : ${{ inputs.use-force-reinstall }}
175174 use-extra-index-url : ${{ inputs.use-extra-index-url }}
175+ use-meta-cdn : ${{ inputs.use-meta-cdn }}
176176
177177 mac-arm64 :
178178 if : inputs.os == 'macos' || inputs.os == 'all'
179179 needs : generate-release-matrix
180180 uses : ./.github/workflows/validate-macos-arm64-binaries.yml
181181 with :
182182 channel : ${{ inputs.channel }}
183- ref : ${{ inputs.ref || github.ref }}
184183 torchonly : ${{ inputs.torchonly }}
185184 version : ${{ inputs.version }}
186185 release-matrix : ${{ needs.generate-release-matrix.outputs.matrix }}
187186 use-only-dl-pytorch-org : ${{ inputs.use-only-dl-pytorch-org }}
188187 use-force-reinstall : ${{ inputs.use-force-reinstall }}
189188 use-extra-index-url : ${{ inputs.use-extra-index-url }}
189+ use-meta-cdn : ${{ inputs.use-meta-cdn }}
0 commit comments