From 4f96d9e605a0e387051c394a958dc6d75c4694da Mon Sep 17 00:00:00 2001 From: XinyaoWa Date: Fri, 15 Nov 2024 15:12:53 +0800 Subject: [PATCH] vllm hpu fix version for bug fix (#1142) Signed-off-by: Xinyao Wang --- .github/workflows/_example-workflow.yml | 2 +- ChatQnA/tests/test_compose_vllm_on_gaudi.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/_example-workflow.yml b/.github/workflows/_example-workflow.yml index 9b50d9349..8dcf40ead 100644 --- a/.github/workflows/_example-workflow.yml +++ b/.github/workflows/_example-workflow.yml @@ -79,7 +79,7 @@ jobs: fi if [[ $(grep -c "vllm-hpu:" ${docker_compose_path}) != 0 ]]; then git clone https://github.com/HabanaAI/vllm-fork.git - cd vllm-fork && git rev-parse HEAD && cd ../ + cd vllm-fork && git git checkout 3c39626 && cd ../ fi git clone https://github.com/opea-project/GenAIComps.git cd GenAIComps && git checkout ${{ inputs.opea_branch }} && git rev-parse HEAD && cd ../ diff --git a/ChatQnA/tests/test_compose_vllm_on_gaudi.sh b/ChatQnA/tests/test_compose_vllm_on_gaudi.sh index 26bef067d..d7d8059d8 100644 --- a/ChatQnA/tests/test_compose_vllm_on_gaudi.sh +++ b/ChatQnA/tests/test_compose_vllm_on_gaudi.sh @@ -17,7 +17,7 @@ ip_address=$(hostname -I | awk '{print $1}') function build_docker_images() { cd $WORKPATH/docker_image_build git clone https://github.com/opea-project/GenAIComps.git && cd GenAIComps && git checkout "${opea_branch:-"main"}" && cd ../ - git clone https://github.com/HabanaAI/vllm-fork.git + git clone https://github.com/HabanaAI/vllm-fork.git && cd vllm-fork && git checkout 3c39626 && cd ../ echo "Build all the images with --no-cache, check docker_image_build.log for details..." service_list="chatqna chatqna-ui dataprep-redis retriever-redis vllm-hpu nginx"