update vLLM CPU to the latest stable version (#1546)

Signed-off-by: Wang, Xigui <xigui.wang@intel.com>
Co-authored-by: chen, suyue <suyue.chen@intel.com>
This commit is contained in:
xiguiw
2025-02-17 08:26:25 +08:00
committed by GitHub
parent 9f36e84c1c
commit 0c0edffc5b
6 changed files with 37 additions and 7 deletions

View File

@@ -18,7 +18,11 @@ function build_vllm_docker_image() {
echo $WORKPATH
if [ ! -d "./vllm" ]; then
git clone https://github.com/vllm-project/vllm.git
cd ./vllm; git checkout tags/v0.6.0
cd vllm
VLLM_VER="$(git describe --tags "$(git rev-list --tags --max-count=1)" )"
echo "Check out vLLM tag ${VLLM_VER}"
git checkout ${VLLM_VER} &> /dev/null
git rev-parse HEAD
else
cd ./vllm
fi