From ba5dba3ca2f9574a2d8fd36d11630a800fba6c6e Mon Sep 17 00:00:00 2001 From: Meenakshi Sharma <163925564+nvda-mesharma@users.noreply.github.com> Date: Wed, 24 Jul 2024 12:11:14 -0700 Subject: [PATCH] Update build_source.sh --- ci/build/build_source.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/build/build_source.sh b/ci/build/build_source.sh index c09da14b..d3cc7239 100644 --- a/ci/build/build_source.sh +++ b/ci/build/build_source.sh @@ -31,7 +31,7 @@ export TRITON_CONTAINER_VERSION=${TAG#v} # example: 24.06 echo "TRITON_CONTAINER_VERSION = ${TRITON_CONTAINER_VERSION}" # Get latest VLLM RELEASED VERSION from https://github.com/vllm-project/vllm/releases -TAG=$(curl https://api.github.com/repos/triton-inference-server/server/releases/latest | grep -i "tag_name" | awk -F '"' '{print $4}') +TAG=$(curl https://api.github.com/repos/vllm-project/vllm/releases/latest | grep -i "tag_name" | awk -F '"' '{print $4}') export VLLM_VERSION=${TAG#v} # example: 0.5.3.post1 echo "VLLM_VERSION = ${VLLM_VERSION}"