Skip to content

Commit 8988fc1

Browse files
committed
Update cu129 wheel to nightly
Signed-off-by: Huy Do <[email protected]>
1 parent 7b7f903 commit 8988fc1

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed

.buildkite/scripts/upload-wheels.sh

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -61,11 +61,12 @@ aws s3 cp "$normal_wheel" "s3://vllm-wheels/$BUILDKITE_COMMIT/"
6161
if [[ $normal_wheel == *"cu126"* ]]; then
6262
# if $normal_wheel matches cu126, do not upload the index.html
6363
echo "Skipping index files for cu126 wheels"
64-
elif [[ $normal_wheel == *"cu129"* ]]; then
65-
# if $normal_wheel matches cu129, do not upload the index.html
66-
echo "Skipping index files for cu129 wheels"
64+
elif [[ $normal_wheel == *"cu128"* ]]; then
65+
# if $normal_wheel matches cu128, do not upload the index.html
66+
echo "Skipping index files for cu128 wheels"
6767
else
68-
# only upload index.html for cu128 wheels (default wheels)
68+
# only upload index.html for cu129 wheels (default wheels) as it
69+
# is available on both x86 and arm64
6970
aws s3 cp index.html "s3://vllm-wheels/$BUILDKITE_COMMIT/vllm/index.html"
7071
aws s3 cp "s3://vllm-wheels/nightly/index.html" "s3://vllm-wheels/$BUILDKITE_COMMIT/index.html"
7172
fi
@@ -77,11 +78,12 @@ aws s3 cp "$normal_wheel" "s3://vllm-wheels/nightly/"
7778
if [[ $normal_wheel == *"cu126"* ]]; then
7879
# if $normal_wheel matches cu126, do not upload the index.html
7980
echo "Skipping index files for cu126 wheels"
80-
elif [[ $normal_wheel == *"cu129"* ]]; then
81-
# if $normal_wheel matches cu129, do not upload the index.html
82-
echo "Skipping index files for cu129 wheels"
81+
elif [[ $normal_wheel == *"cu128"* ]]; then
82+
# if $normal_wheel matches cu128, do not upload the index.html
83+
echo "Skipping index files for cu128 wheels"
8384
else
84-
# only upload index.html for cu128 wheels (default wheels)
85+
# only upload index.html for cu129 wheels (default wheels) as it
86+
# is available on both x86 and arm64
8587
aws s3 cp index.html "s3://vllm-wheels/nightly/vllm/index.html"
8688
fi
8789

0 commit comments

Comments
 (0)