Skip to content
This repository was archived by the owner on Aug 15, 2025. It is now read-only.

Commit 3ea9fd9

Browse files
committed
embed mini-matrix (for test)
1 parent 571f8bd commit 3ea9fd9

File tree

1 file changed

+33
-11
lines changed

1 file changed

+33
-11
lines changed

.github/workflows/validate-windows-binaries.yml

Lines changed: 33 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,21 +10,43 @@ on:
1010
# paths:
1111
# - .github/workflows/validate-windows-binaries.yml
1212
jobs:
13-
generate-conda-matrix:
14-
uses: pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml@main
15-
with:
16-
package-type: conda
17-
os: windows
18-
generate-wheels-matrix:
19-
uses: pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml@main
20-
with:
21-
package-type: wheel
22-
os: windows
13+
# generate-conda-matrix:
14+
# uses: pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml@main
15+
# with:
16+
# package-type: conda
17+
# os: windows
18+
# generate-wheels-matrix:
19+
# uses: pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml@main
20+
# with:
21+
# package-type: wheel
22+
# os: windows
2323
validate-windows-binaries-conda:
2424
needs: generate-conda-matrix
2525
strategy:
2626
matrix:
27-
${{ fromJson(needs.generate-conda-matrix.outputs.matrix) }}
27+
# ${{ fromJson(needs.generate-conda-matrix.outputs.matrix) }}
28+
"include": [
29+
{
30+
"python_version": "3.7",
31+
"gpu_arch_type": "cpu",
32+
"gpu_arch_version": "",
33+
"desired_cuda": "cpu",
34+
"container_image": "pytorch/conda-builder:cpu",
35+
"package_type": "conda",
36+
"build_name": "conda-py3_7-cpu",
37+
"validation_runner": "windows-2019"
38+
},
39+
{
40+
"python_version": "3.7",
41+
"gpu_arch_type": "cuda",
42+
"gpu_arch_version": "11.3",
43+
"desired_cuda": "cu113",
44+
"container_image": "pytorch/conda-builder:cuda11.3",
45+
"package_type": "conda",
46+
"build_name": "conda-py3_7-cuda11_3",
47+
"validation_runner": "windows-2019-m60"
48+
}
49+
]
2850
fail-fast: false
2951
runs-on: ${{ matrix.validation_runner }}
3052
steps:

0 commit comments

Comments
 (0)