We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dea8943 commit 0a8bd9fCopy full SHA for 0a8bd9f
.github/workflows/build-rocm-wheel.yml
@@ -353,9 +353,13 @@ jobs:
353
354
# Step 1: Use dumb-pypi to generate base index for small wheels
355
# This creates proper PEP 503 compliant structure
356
- echo "Step 1: Running dumb-pypi for small wheels..."
+ 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..."
361
dumb-pypi \
- --package-list packages-small \
362
+ --package-list packages-small-list.txt \
363
--packages-url "$PAGES_URL/packages" \
364
--output-dir simple
365
0 commit comments