Skip to content

Commit 5cb4398

Browse files
committed
debug: skip build-local for debugging build-pypi
1 parent f8adc9c commit 5cb4398

1 file changed

Lines changed: 40 additions & 40 deletions

File tree

.github/workflows/wheels.yml

Lines changed: 40 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -4,26 +4,26 @@ on:
44
workflow_dispatch:
55

66
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 }}
2727

2828
build-pypi:
2929
# Single canonical build intended for PyPI: no local CUDA/torch suffix
@@ -84,26 +84,26 @@ jobs:
8484
# dist/*/*.whl
8585

8686

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
107107

108108
# upload_pip:
109109
# needs: build

0 commit comments

Comments
 (0)