Skip to content

Commit fca6693

Browse files
ZePan110cwlacewe
authored andcommitted
Adaptation to vllm v0.8.3 build paths (opea-project#1761)
Signed-off-by: ZePan110 <ze.pan@intel.com> Signed-off-by: Lacewell, Chaunte W <chaunte.w.lacewell@intel.com>
1 parent 6c3aabd commit fca6693

20 files changed

+21
-21
lines changed

.github/workflows/_build_image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
docker_compose_path=${{ github.workspace }}/${{ inputs.example }}/docker_image_build/build.yaml
7878
if [[ $(grep -c "vllm:" ${docker_compose_path}) != 0 ]]; then
7979
git clone https://github.com/vllm-project/vllm.git && cd vllm
80-
VLLM_VER=v0.8.2
80+
VLLM_VER=v0.8.3
8181
echo "Check out vLLM tag ${VLLM_VER}"
8282
git checkout ${VLLM_VER} &> /dev/null && cd ../
8383
fi

AudioQnA/docker_compose/intel/cpu/xeon/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ docker build -t opea/whisper:latest --build-arg https_proxy=$https_proxy --build
2626
```bash
2727
git clone https://github.com/vllm-project/vllm.git
2828
cd ./vllm/
29-
VLLM_VER="v0.8.2"
29+
VLLM_VER="v0.8.3"
3030
git checkout ${VLLM_VER}
31-
docker build --no-cache --build-arg https_proxy=$https_proxy --build-arg http_proxy=$http_proxy -f Dockerfile.cpu -t opea/vllm:latest --shm-size=128g .
31+
docker build --no-cache --build-arg https_proxy=$https_proxy --build-arg http_proxy=$http_proxy -f docker/Dockerfile.cpu -t opea/vllm:latest --shm-size=128g .
3232
```
3333

3434
### 4. Build TTS Image

AudioQnA/docker_image_build/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ services:
7474
vllm:
7575
build:
7676
context: vllm
77-
dockerfile: Dockerfile.cpu
77+
dockerfile: docker/Dockerfile.cpu
7878
extends: audioqna
7979
image: ${REGISTRY:-opea}/vllm:${TAG:-latest}
8080
vllm-gaudi:

AudioQnA/tests/test_compose_multilang_on_xeon.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ function build_docker_images() {
3333

3434
git clone https://github.com/vllm-project/vllm.git
3535
cd ./vllm/
36-
VLLM_VER="v0.8.2"
36+
VLLM_VER="v0.8.3"
3737
echo "Check out vLLM tag ${VLLM_VER}"
3838
git checkout ${VLLM_VER} &> /dev/null && cd ../
3939

AudioQnA/tests/test_compose_on_xeon.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ function build_docker_images() {
3333

3434
git clone https://github.com/vllm-project/vllm.git
3535
cd ./vllm/
36-
VLLM_VER="v0.8.2"
36+
VLLM_VER="v0.8.3"
3737
echo "Check out vLLM tag ${VLLM_VER}"
3838
git checkout ${VLLM_VER} &> /dev/null && cd ../
3939

ChatQnA/docker_image_build/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ services:
7575
vllm:
7676
build:
7777
context: vllm
78-
dockerfile: Dockerfile.cpu
78+
dockerfile: docker/Dockerfile.cpu
7979
extends: chatqna
8080
image: ${REGISTRY:-opea}/vllm:${TAG:-latest}
8181
vllm-gaudi:

ChatQnA/tests/test_compose_faqgen_on_xeon.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ function build_docker_images() {
2424
docker build --no-cache -t ${REGISTRY}/comps-base:${TAG} --build-arg https_proxy=$https_proxy --build-arg http_proxy=$http_proxy -f Dockerfile .
2525
popd && sleep 1s
2626
git clone https://github.com/vllm-project/vllm.git && cd vllm
27-
VLLM_VER="v0.8.2"
27+
VLLM_VER="v0.8.3"
2828
echo "Check out vLLM tag ${VLLM_VER}"
2929
git checkout ${VLLM_VER} &> /dev/null && cd ../
3030

ChatQnA/tests/test_compose_faqgen_tgi_on_xeon.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ function build_docker_images() {
2424
docker build --no-cache -t ${REGISTRY}/comps-base:${TAG} --build-arg https_proxy=$https_proxy --build-arg http_proxy=$http_proxy -f Dockerfile .
2525
popd && sleep 1s
2626
git clone https://github.com/vllm-project/vllm.git && cd vllm
27-
VLLM_VER="v0.8.2"
27+
VLLM_VER="v0.8.3"
2828
echo "Check out vLLM tag ${VLLM_VER}"
2929
git checkout ${VLLM_VER} &> /dev/null && cd ../
3030

ChatQnA/tests/test_compose_milvus_on_xeon.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ function build_docker_images() {
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
2727
git clone https://github.com/vllm-project/vllm.git && cd vllm
28-
VLLM_VER="v0.8.2"
28+
VLLM_VER="v0.8.3"
2929
echo "Check out vLLM tag ${VLLM_VER}"
3030
git checkout ${VLLM_VER} &> /dev/null
3131
# make sure NOT change the pwd

ChatQnA/tests/test_compose_on_xeon.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ function build_docker_images() {
2424
docker build --no-cache -t ${REGISTRY}/comps-base:${TAG} --build-arg https_proxy=$https_proxy --build-arg http_proxy=$http_proxy -f Dockerfile .
2525
popd && sleep 1s
2626
git clone https://github.com/vllm-project/vllm.git && cd vllm
27-
VLLM_VER="v0.8.2"
27+
VLLM_VER="v0.8.3"
2828
echo "Check out vLLM tag ${VLLM_VER}"
2929
git checkout ${VLLM_VER} &> /dev/null
3030
# make sure NOT change the pwd

ChatQnA/tests/test_compose_pinecone_on_xeon.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ function build_docker_images() {
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
2727
git clone https://github.com/vllm-project/vllm.git && cd vllm
28-
VLLM_VER="v0.8.2"
28+
VLLM_VER="v0.8.3"
2929
echo "Check out vLLM tag ${VLLM_VER}"
3030
git checkout ${VLLM_VER} &> /dev/null
3131
# Not change the pwd

ChatQnA/tests/test_compose_qdrant_on_xeon.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ function build_docker_images() {
2424
docker build --no-cache -t ${REGISTRY}/comps-base:${TAG} --build-arg https_proxy=$https_proxy --build-arg http_proxy=$http_proxy -f Dockerfile .
2525
popd && sleep 1s
2626
git clone https://github.com/vllm-project/vllm.git && cd vllm
27-
VLLM_VER="v0.8.2"
27+
VLLM_VER="v0.8.3"
2828
echo "Check out vLLM tag ${VLLM_VER}"
2929
git checkout ${VLLM_VER} &> /dev/null
3030
# Not change the pwd

ChatQnA/tests/test_compose_without_rerank_on_xeon.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ function build_docker_images() {
2525
popd && sleep 1s
2626
git clone https://github.com/vllm-project/vllm.git && cd vllm
2727

28-
VLLM_VER="v0.8.2"
28+
VLLM_VER="v0.8.3"
2929
echo "Check out vLLM tag ${VLLM_VER}"
3030
git checkout ${VLLM_VER} &> /dev/null
3131
# Not change the pwd

CodeGen/docker_image_build/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ services:
3737
vllm:
3838
build:
3939
context: vllm
40-
dockerfile: Dockerfile.cpu
40+
dockerfile: docker/Dockerfile.cpu
4141
extends: codegen
4242
image: ${REGISTRY:-opea}/vllm:${TAG:-latest}
4343
vllm-gaudi:

CodeGen/tests/test_compose_on_xeon.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ function build_docker_images() {
3232
git clone --depth 1 --branch ${opea_branch} https://github.com/opea-project/GenAIComps.git
3333

3434
git clone https://github.com/vllm-project/vllm.git && cd vllm
35-
VLLM_VER="v0.8.2"
35+
VLLM_VER="v0.8.3"
3636
echo "Check out vLLM tag ${VLLM_VER}"
3737
git checkout ${VLLM_VER} &> /dev/null
3838
cd ../

CodeTrans/docker_image_build/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ services:
2626
vllm:
2727
build:
2828
context: vllm
29-
dockerfile: Dockerfile.cpu
29+
dockerfile: docker/Dockerfile.cpu
3030
extends: codetrans
3131
image: ${REGISTRY:-opea}/vllm:${TAG:-latest}
3232
vllm-gaudi:

CodeTrans/tests/test_compose_on_xeon.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ function build_docker_images() {
3131
cd $WORKPATH/docker_image_build
3232
git clone --depth 1 --branch ${opea_branch} https://github.com/opea-project/GenAIComps.git
3333
git clone https://github.com/vllm-project/vllm.git && cd vllm
34-
VLLM_VER="v0.8.2"
34+
VLLM_VER="v0.8.3"
3535
echo "Check out vLLM tag ${VLLM_VER}"
3636
git checkout ${VLLM_VER} &> /dev/null
3737
cd ../

DocSum/docker_image_build/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ services:
5757
vllm:
5858
build:
5959
context: vllm
60-
dockerfile: Dockerfile.cpu
60+
dockerfile: docker/Dockerfile.cpu
6161
extends: docsum
6262
image: ${REGISTRY:-opea}/vllm:${TAG:-latest}
6363
vllm-gaudi:

DocSum/tests/test_compose_on_xeon.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ function build_docker_images() {
5858
popd && sleep 1s
5959

6060
git clone https://github.com/vllm-project/vllm.git && cd vllm
61-
VLLM_VER="v0.8.2"
61+
VLLM_VER="v0.8.3"
6262
echo "Check out vLLM tag ${VLLM_VER}"
6363
git checkout ${VLLM_VER} &> /dev/null
6464
cd ../

WorkflowExecAgent/tests/2_start_vllm_service.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ function build_vllm_docker_image() {
1919
if [ ! -d "./vllm" ]; then
2020
git clone https://github.com/vllm-project/vllm.git
2121
cd vllm
22-
VLLM_VER="v0.8.2"
22+
VLLM_VER="v0.8.3"
2323
echo "Check out vLLM tag ${VLLM_VER}"
2424
git checkout ${VLLM_VER} &> /dev/null
2525
git rev-parse HEAD

0 commit comments

Comments
 (0)