Skip to content

Commit 0a8bd9f

Browse files
committed
fix dumbpypi issue
Signed-off-by: tjtanaa <tunjian.tan@embeddedllm.com>
1 parent dea8943 commit 0a8bd9f

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/build-rocm-wheel.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -353,9 +353,13 @@ jobs:
353353
354354
# Step 1: Use dumb-pypi to generate base index for small wheels
355355
# This creates proper PEP 503 compliant structure
356-
echo "Step 1: Running dumb-pypi for small wheels..."
356+
echo "Step 1: Generating package list for dumb-pypi..."
357+
ls -1 packages-small/*.whl | xargs -n1 basename > packages-small-list.txt
358+
echo "Package list created with $(wc -l < packages-small-list.txt) packages"
359+
360+
echo "Running dumb-pypi for small wheels..."
357361
dumb-pypi \
358-
--package-list packages-small \
362+
--package-list packages-small-list.txt \
359363
--packages-url "$PAGES_URL/packages" \
360364
--output-dir simple
361365

0 commit comments

Comments
 (0)