mirror of
https://github.com/vllm-project/vllm.git
synced 2026-06-06 00:16:14 +00:00
e19b9b1045
Signed-off-by: khluu <khluu000@gmail.com> Signed-off-by: Kevin H. Luu <khluu000@gmail.com> Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
38 lines
977 B
Bash
Executable File
38 lines
977 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
if [[ $# -lt 3 ]]; then
|
|
echo "Usage: $0 <registry> <repo> <commit>"
|
|
exit 1
|
|
fi
|
|
|
|
REGISTRY=$1
|
|
REPO=$2
|
|
BUILDKITE_COMMIT=$3
|
|
|
|
# authenticate with AWS ECR
|
|
aws ecr-public get-login-password --region us-east-1 | docker login --username AWS --password-stdin "$REGISTRY" || true
|
|
|
|
# skip build if image already exists
|
|
if [[ -z $(docker manifest inspect "$REGISTRY"/"$REPO":"$BUILDKITE_COMMIT"-arm64) ]]; then
|
|
echo "Image not found, proceeding with build..."
|
|
else
|
|
echo "Image found"
|
|
exit 0
|
|
fi
|
|
|
|
# build (Grace/GH200 is the arm64 GPU target; sm_90)
|
|
docker build --file docker/Dockerfile \
|
|
--platform linux/arm64 \
|
|
--build-arg max_jobs=16 \
|
|
--build-arg nvcc_threads=4 \
|
|
--build-arg torch_cuda_arch_list="9.0" \
|
|
--build-arg USE_SCCACHE=1 \
|
|
--build-arg buildkite_commit="$BUILDKITE_COMMIT" \
|
|
--tag "$REGISTRY"/"$REPO":"$BUILDKITE_COMMIT"-arm64 \
|
|
--target test \
|
|
--progress plain .
|
|
|
|
# push
|
|
docker push "$REGISTRY"/"$REPO":"$BUILDKITE_COMMIT"-arm64
|