Skip to content

Commit 7970694

Browse files
committed
bug fix
Signed-off-by: chensuyue <suyue.chen@intel.com>
1 parent f5859f9 commit 7970694

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

VisualQnA/tests/test_compose_on_xeon.sh

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,11 @@ function build_docker_images() {
2424
echo "GenAIComps test commit is $(git rev-parse HEAD)"
2525
docker build --no-cache -t ${REGISTRY}/comps-base:${TAG} --build-arg https_proxy=$https_proxy --build-arg http_proxy=$http_proxy -f Dockerfile .
2626
popd && sleep 1s
27+
git clone https://github.com/vllm-project/vllm.git && cd vllm
28+
VLLM_VER="v0.8.3"
29+
echo "Check out vLLM tag ${VLLM_VER}"
30+
git checkout ${VLLM_VER} &> /dev/null
31+
cd ../
2732

2833
service_list="visualqna visualqna-ui lvm nginx vllm"
2934
docker compose -f build.yaml build ${service_list} --no-cache > ${LOG_PATH}/docker_image_build.log
@@ -32,11 +37,8 @@ function build_docker_images() {
3237

3338
function start_services() {
3439
cd $WORKPATH/docker_compose/intel/cpu/xeon/
35-
3640
source ./set_env.sh
37-
3841
sed -i "s/backend_address/$ip_address/g" $WORKPATH/ui/svelte/.env
39-
4042
# Start Docker Containers
4143
docker compose up -d > ${LOG_PATH}/start_services_with_compose.log
4244

0 commit comments

Comments
 (0)