Skip to content

Commit e716bc3

Browse files
committed
test
Signed-off-by: jiang1.li <jiang1.li@intel.com>
1 parent 299906d commit e716bc3

File tree

1 file changed

+20
-8
lines changed

1 file changed

+20
-8
lines changed

.buildkite/scripts/upload-wheels.sh

Lines changed: 20 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -59,22 +59,30 @@ 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/"
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

6569
if [[ $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"
7179
else
7280
echo "Skipping index files for non-cu129, non-cpu wheels"
7381
fi
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

7987
if [[ $normal_wheel == *"cu129"* ]]; then
8088
# only upload index.html for cu129 wheels (default wheels) as it
@@ -84,5 +92,9 @@ else
8492
echo "Skipping index files for non-cu129 wheels"
8593
fi
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

Comments
 (0)