Skip to content

Commit 35ba6c1

Browse files
committed
Revert "test"
This reverts commit e716bc3.
1 parent e716bc3 commit 35ba6c1

File tree

1 file changed

+8
-20
lines changed

1 file changed

+8
-20
lines changed

.buildkite/scripts/upload-wheels.sh

Lines changed: 8 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -59,30 +59,22 @@ if [[ $version == *cpu* ]]; then
5959
fi
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/"
64-
echo "$wheel"
65-
echo "s3://vllm-wheels/$BUILDKITE_COMMIT/"
66-
echo "$normal_wheel"
67-
echo "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/"
6864

6965
if [[ $normal_wheel == *"cu129"* || $normal_wheel == *"cpu"* ]]; then
7066
# only upload index.html for cu129 wheels (default wheels) as it
7167
# is available on both x86 and arm64
7268
# also upload cpu wheels as is available on both x86 and arm64
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"
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"
7971
else
8072
echo "Skipping index files for non-cu129, non-cpu wheels"
8173
fi
8274

8375
# generate index for nightly
84-
# aws s3 cp "$wheel" "s3://vllm-wheels/nightly/"
85-
# aws s3 cp "$normal_wheel" "s3://vllm-wheels/nightly/"
76+
aws s3 cp "$wheel" "s3://vllm-wheels/nightly/"
77+
aws s3 cp "$normal_wheel" "s3://vllm-wheels/nightly/"
8678

8779
if [[ $normal_wheel == *"cu129"* ]]; then
8880
# only upload index.html for cu129 wheels (default wheels) as it
@@ -92,9 +84,5 @@ else
9284
echo "Skipping index files for non-cu129 wheels"
9385
fi
9486

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"
87+
aws s3 cp "$wheel" "s3://vllm-wheels/$version/"
88+
aws s3 cp index.html "s3://vllm-wheels/$version/vllm/index.html"

0 commit comments

Comments
 (0)