@@ -59,22 +59,30 @@ if [[ $version == *cpu* ]]; then
5959fi
6060
6161# generate index for this commit
62- aws s3 cp " $wheel " " s3://vllm-wheels/$BUILDKITE_COMMIT /"
63- aws s3 cp " $normal_wheel " " s3://vllm-wheels/$BUILDKITE_COMMIT /"
62+ # aws s3 cp "$wheel" "s3://vllm-wheels/$BUILDKITE_COMMIT/"
63+ # aws s3 cp "$normal_wheel" "s3://vllm-wheels/$BUILDKITE_COMMIT/"
64+ echo " $wheel "
65+ echo " s3://vllm-wheels/$BUILDKITE_COMMIT /"
66+ echo " $normal_wheel "
67+ echo " s3://vllm-wheels/$BUILDKITE_COMMIT /"
6468
6569if [[ $normal_wheel == * " cu129" * || $normal_wheel == * " cpu" * ]]; then
6670 # only upload index.html for cu129 wheels (default wheels) as it
6771 # is available on both x86 and arm64
6872 # also upload cpu wheels as is available on both x86 and arm64
69- aws s3 cp index.html " s3://vllm-wheels/$BUILDKITE_COMMIT /vllm/index.html"
70- aws s3 cp " s3://vllm-wheels/nightly/index.html" " s3://vllm-wheels/$BUILDKITE_COMMIT /index.html"
73+ # aws s3 cp index.html "s3://vllm-wheels/$BUILDKITE_COMMIT/vllm/index.html"
74+ # aws s3 cp "s3://vllm-wheels/nightly/index.html" "s3://vllm-wheels/$BUILDKITE_COMMIT/index.html"
75+ echo index.html
76+ echo " s3://vllm-wheels/$BUILDKITE_COMMIT /vllm/index.html"
77+ echo " s3://vllm-wheels/nightly/index.html"
78+ echo " s3://vllm-wheels/$BUILDKITE_COMMIT /index.html"
7179else
7280 echo " Skipping index files for non-cu129, non-cpu wheels"
7381fi
7482
7583# generate index for nightly
76- aws s3 cp " $wheel " " s3://vllm-wheels/nightly/"
77- aws s3 cp " $normal_wheel " " s3://vllm-wheels/nightly/"
84+ # aws s3 cp "$wheel" "s3://vllm-wheels/nightly/"
85+ # aws s3 cp "$normal_wheel" "s3://vllm-wheels/nightly/"
7886
7987if [[ $normal_wheel == * " cu129" * ]]; then
8088 # only upload index.html for cu129 wheels (default wheels) as it
8492 echo " Skipping index files for non-cu129 wheels"
8593fi
8694
87- aws s3 cp " $wheel " " s3://vllm-wheels/$version /"
88- aws s3 cp index.html " s3://vllm-wheels/$version /vllm/index.html"
95+ # aws s3 cp "$wheel" "s3://vllm-wheels/$version/"
96+ # aws s3 cp index.html "s3://vllm-wheels/$version/vllm/index.html"
97+ echo " $wheel "
98+ echo " s3://vllm-wheels/$version /"
99+ echo index.html
100+ echo " s3://vllm-wheels/$version /vllm/index.html"
0 commit comments