Skip to content

Commit 42735d0

Browse files
authored
Fix vllm and vllm-fork tags (opea-project#1766)
Signed-off-by: ZePan110 <ze.pan@intel.com>
1 parent 073e544 commit 42735d0

25 files changed

+28
-30
lines changed

.github/workflows/_build_image.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,15 +77,13 @@ 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-
# Get the latest tag
81-
VLLM_VER=$(git describe --tags "$(git rev-list --tags --max-count=1)")
80+
VLLM_VER=v0.8.2
8281
echo "Check out vLLM tag ${VLLM_VER}"
8382
git checkout ${VLLM_VER} &> /dev/null && cd ../
8483
fi
8584
if [[ $(grep -c "vllm-gaudi:" ${docker_compose_path}) != 0 ]]; then
8685
git clone https://github.com/HabanaAI/vllm-fork.git && cd vllm-fork
87-
# Get the latest tag
88-
VLLM_VER=$(git describe --tags "$(git rev-list --tags --max-count=1)")
86+
VLLM_VER=v0.6.6.post1+Gaudi-1.20.0
8987
echo "Check out vLLM tag ${VLLM_VER}"
9088
git checkout ${VLLM_VER} &> /dev/null && cd ../
9189
fi

AgentQnA/tests/step1_build_images.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ function build_vllm_docker_image() {
4242
git clone https://github.com/HabanaAI/vllm-fork.git
4343
fi
4444
cd ./vllm-fork
45-
VLLM_VER=$(git describe --tags "$(git rev-list --tags --max-count=1)")
45+
VLLM_VER=v0.6.6.post1+Gaudi-1.20.0
4646
git checkout ${VLLM_VER} &> /dev/null
4747
docker build --no-cache -f Dockerfile.hpu -t opea/vllm-gaudi:ci --shm-size=128g . --build-arg https_proxy=$https_proxy --build-arg http_proxy=$http_proxy
4848
if [ $? -ne 0 ]; then

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ 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="$(git describe --tags "$(git rev-list --tags --max-count=1)" )"
29+
VLLM_VER="v0.8.2"
3030
git checkout ${VLLM_VER}
3131
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 .
3232
```

AudioQnA/docker_compose/intel/hpu/gaudi/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ docker build -t opea/whisper-gaudi:latest --build-arg https_proxy=$https_proxy -
2525

2626
git clone https://github.com/HabanaAI/vllm-fork.git
2727
cd vllm-fork/
28-
VLLM_VER=$(git describe --tags "$(git rev-list --tags --max-count=1)")
28+
VLLM_VER=v0.6.6.post1+Gaudi-1.20.0
2929
git checkout ${VLLM_VER}
3030
docker build --no-cache --build-arg https_proxy=$https_proxy --build-arg http_proxy=$http_proxy -f Dockerfile.hpu -t opea/vllm-gaudi:latest --shm-size=128g .
3131

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="$(git describe --tags "$(git rev-list --tags --max-count=1)" )"
36+
VLLM_VER="v0.8.2"
3737
echo "Check out vLLM tag ${VLLM_VER}"
3838
git checkout ${VLLM_VER} &> /dev/null && cd ../
3939

AudioQnA/tests/test_compose_on_gaudi.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/HabanaAI/vllm-fork.git
3535
cd vllm-fork/
36-
VLLM_VER=$(git describe --tags "$(git rev-list --tags --max-count=1)")
36+
VLLM_VER=v0.6.6.post1+Gaudi-1.20.0
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="$(git describe --tags "$(git rev-list --tags --max-count=1)" )"
36+
VLLM_VER="v0.8.2"
3737
echo "Check out vLLM tag ${VLLM_VER}"
3838
git checkout ${VLLM_VER} &> /dev/null && cd ../
3939

ChatQnA/tests/test_compose_faqgen_on_gaudi.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/HabanaAI/vllm-fork.git && cd vllm-fork
27-
VLLM_VER=$(git describe --tags "$(git rev-list --tags --max-count=1)")
27+
VLLM_VER=v0.6.6.post1+Gaudi-1.20.0
2828
git checkout ${VLLM_VER} &> /dev/null && cd ../
2929

3030
echo "Build all the images with --no-cache, check docker_image_build.log for details..."

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="$(git describe --tags "$(git rev-list --tags --max-count=1)" )"
27+
VLLM_VER="v0.8.2"
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="$(git describe --tags "$(git rev-list --tags --max-count=1)" )"
27+
VLLM_VER="v0.8.2"
2828
echo "Check out vLLM tag ${VLLM_VER}"
2929
git checkout ${VLLM_VER} &> /dev/null && cd ../
3030

ChatQnA/tests/test_compose_guardrails_on_gaudi.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/HabanaAI/vllm-fork.git && cd vllm-fork
27-
VLLM_VER=$(git describe --tags "$(git rev-list --tags --max-count=1)")
27+
VLLM_VER=v0.6.6.post1+Gaudi-1.20.0
2828
git checkout ${VLLM_VER} &> /dev/null && cd ../
2929

3030
echo "Build all the images with --no-cache, check docker_image_build.log for details..."

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="$(git describe --tags "$(git rev-list --tags --max-count=1)" )"
28+
VLLM_VER="v0.8.2"
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_gaudi.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/HabanaAI/vllm-fork.git && cd vllm-fork
27-
VLLM_VER=$(git describe --tags "$(git rev-list --tags --max-count=1)")
27+
VLLM_VER=v0.6.6.post1+Gaudi-1.20.0
2828
git checkout ${VLLM_VER} &> /dev/null && cd ../
2929

3030
echo "Build all the images with --no-cache, check docker_image_build.log for details..."

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="$(git describe --tags "$(git rev-list --tags --max-count=1)" )"
27+
VLLM_VER="v0.8.2"
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="$(git describe --tags "$(git rev-list --tags --max-count=1)" )"
28+
VLLM_VER="v0.8.2"
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="$(git describe --tags "$(git rev-list --tags --max-count=1)" )"
27+
VLLM_VER="v0.8.2"
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_gaudi.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/HabanaAI/vllm-fork.git && cd vllm-fork
27-
VLLM_VER=$(git describe --tags "$(git rev-list --tags --max-count=1)")
27+
VLLM_VER=v0.6.6.post1+Gaudi-1.20.0
2828
git checkout ${VLLM_VER} &> /dev/null && cd ../
2929

3030
echo "Build all the images with --no-cache, check docker_image_build.log for details..."

ChatQnA/tests/test_compose_without_rerank_on_xeon.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ 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-
# Get the latest tag
28-
VLLM_VER="$(git describe --tags "$(git rev-list --tags --max-count=1)" )"
27+
28+
VLLM_VER="v0.8.2"
2929
echo "Check out vLLM tag ${VLLM_VER}"
3030
git checkout ${VLLM_VER} &> /dev/null
3131
# Not change the pwd

CodeGen/tests/test_compose_on_gaudi.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ function build_docker_images() {
3030

3131
cd $WORKPATH/docker_image_build
3232
git clone --depth 1 --branch ${opea_branch} https://github.com/opea-project/GenAIComps.git
33-
# Download Gaudi vllm of latest tag
33+
3434
git clone https://github.com/HabanaAI/vllm-fork.git && cd vllm-fork
35-
VLLM_VER=$(git describe --tags "$(git rev-list --tags --max-count=1)")
35+
VLLM_VER=v0.6.6.post1+Gaudi-1.20.0
3636
echo "Check out vLLM tag ${VLLM_VER}"
3737
git checkout ${VLLM_VER} &> /dev/null && cd ../
3838

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="$(git describe --tags "$(git rev-list --tags --max-count=1)" )"
35+
VLLM_VER="v0.8.2"
3636
echo "Check out vLLM tag ${VLLM_VER}"
3737
git checkout ${VLLM_VER} &> /dev/null
3838
cd ../

CodeTrans/tests/test_compose_on_gaudi.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/HabanaAI/vllm-fork.git && cd vllm-fork
34-
VLLM_VER=$(git describe --tags "$(git rev-list --tags --max-count=1)")
34+
VLLM_VER=v0.6.6.post1+Gaudi-1.20.0
3535
git checkout ${VLLM_VER} &> /dev/null && cd ../
3636

3737
echo "Build all the images with --no-cache, check docker_image_build.log for details..."

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="$(git describe --tags "$(git rev-list --tags --max-count=1)" )"
34+
VLLM_VER="v0.8.2"
3535
echo "Check out vLLM tag ${VLLM_VER}"
3636
git checkout ${VLLM_VER} &> /dev/null
3737
cd ../

DocSum/tests/test_compose_on_gaudi.sh

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

6565
git clone https://github.com/HabanaAI/vllm-fork.git && cd vllm-fork
66-
VLLM_VER=$(git describe --tags "$(git rev-list --tags --max-count=1)")
66+
VLLM_VER=v0.6.6.post1+Gaudi-1.20.0
6767
git checkout ${VLLM_VER} &> /dev/null && cd ../
6868

6969
echo "Build all the images with --no-cache, check docker_image_build.log for details..."

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="$(git describe --tags "$(git rev-list --tags --max-count=1)" )"
61+
VLLM_VER="v0.8.2"
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="$(git describe --tags "$(git rev-list --tags --max-count=1)" )"
22+
VLLM_VER="v0.8.2"
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)