@@ -61,11 +61,12 @@ aws s3 cp "$normal_wheel" "s3://vllm-wheels/$BUILDKITE_COMMIT/"
6161if [[ $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"
6767else
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"
7172fi
@@ -77,11 +78,12 @@ aws s3 cp "$normal_wheel" "s3://vllm-wheels/nightly/"
7778if [[ $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"
8384else
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"
8688fi
8789
0 commit comments