|
4 | 4 | workflow_dispatch: |
5 | 5 |
|
6 | 6 | jobs: |
7 | | - build-local: |
8 | | - strategy: |
9 | | - fail-fast: false |
10 | | - matrix: |
11 | | - os: |
12 | | - - ubuntu-22.04 |
13 | | - # - windows-2019 |
14 | | - python: ['3.10', '3.11', '3.12'] |
15 | | - torch_version: ['2.7.0', '2.8.0', '2.9.0'] |
16 | | - cuda_short_version: ['126'] |
17 | | - exclude: |
18 | | - - torch_version: '2.9.0' |
19 | | - python: '3.9' |
20 | | - |
21 | | - uses: ./.github/workflows/wheels_build.yml |
22 | | - with: |
23 | | - os: ${{ matrix.os }} |
24 | | - python: ${{ matrix.python }} |
25 | | - torch_version: ${{ matrix.torch_version }} |
26 | | - cuda_short_version: ${{ matrix.cuda_short_version }} |
| 7 | + # build-local: |
| 8 | + # strategy: |
| 9 | + # fail-fast: false |
| 10 | + # matrix: |
| 11 | + # os: |
| 12 | + # - ubuntu-22.04 |
| 13 | + # # - windows-2019 |
| 14 | + # python: ['3.10', '3.11', '3.12'] |
| 15 | + # torch_version: ['2.7.0', '2.8.0', '2.9.0'] |
| 16 | + # cuda_short_version: ['126'] |
| 17 | + # exclude: |
| 18 | + # - torch_version: '2.9.0' |
| 19 | + # python: '3.9' |
| 20 | + |
| 21 | + # uses: ./.github/workflows/wheels_build.yml |
| 22 | + # with: |
| 23 | + # os: ${{ matrix.os }} |
| 24 | + # python: ${{ matrix.python }} |
| 25 | + # torch_version: ${{ matrix.torch_version }} |
| 26 | + # cuda_short_version: ${{ matrix.cuda_short_version }} |
27 | 27 |
|
28 | 28 | build-pypi: |
29 | 29 | # Single canonical build intended for PyPI: no local CUDA/torch suffix |
@@ -84,26 +84,26 @@ jobs: |
84 | 84 | # dist/*/*.whl |
85 | 85 |
|
86 | 86 |
|
87 | | - consolidate-wheels: |
88 | | - needs: [build-local, build-pypi] |
89 | | - runs-on: ubuntu-latest |
90 | | - steps: |
91 | | - - name: Download all wheel artifacts |
92 | | - uses: actions/download-artifact@v4 |
93 | | - with: |
94 | | - path: dist |
95 | | - |
96 | | - - name: Consolidate wheels into a single folder |
97 | | - run: | |
98 | | - mkdir -p consolidated_wheels |
99 | | - find dist -name '*.whl' -exec cp {} consolidated_wheels/ \; |
100 | | - ls -l consolidated_wheels |
101 | | -
|
102 | | - - name: Upload consolidated wheels |
103 | | - uses: actions/upload-artifact@v4 |
104 | | - with: |
105 | | - name: built-wheels |
106 | | - path: consolidated_wheels |
| 87 | + # consolidate-wheels: |
| 88 | + # needs: [build-local, build-pypi] |
| 89 | + # runs-on: ubuntu-latest |
| 90 | + # steps: |
| 91 | + # - name: Download all wheel artifacts |
| 92 | + # uses: actions/download-artifact@v4 |
| 93 | + # with: |
| 94 | + # path: dist |
| 95 | + |
| 96 | + # - name: Consolidate wheels into a single folder |
| 97 | + # run: | |
| 98 | + # mkdir -p consolidated_wheels |
| 99 | + # find dist -name '*.whl' -exec cp {} consolidated_wheels/ \; |
| 100 | + # ls -l consolidated_wheels |
| 101 | + |
| 102 | + # - name: Upload consolidated wheels |
| 103 | + # uses: actions/upload-artifact@v4 |
| 104 | + # with: |
| 105 | + # name: built-wheels |
| 106 | + # path: consolidated_wheels |
107 | 107 |
|
108 | 108 | # upload_pip: |
109 | 109 | # needs: build |
|
0 commit comments