|
10 | 10 | # paths: |
11 | 11 | # - .github/workflows/validate-windows-binaries.yml |
12 | 12 | 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 |
23 | 23 | validate-windows-binaries-conda: |
24 | 24 | needs: generate-conda-matrix |
25 | 25 | strategy: |
26 | 26 | 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 | + ] |
28 | 50 | fail-fast: false |
29 | 51 | runs-on: ${{ matrix.validation_runner }} |
30 | 52 | steps: |
|
0 commit comments