Skip to content

Commit

Permalink
Merge pull request #25 from mhbuehler/melanie/redirect_clones_for_tests
Browse files Browse the repository at this point in the history
Temporarily redirect clones for tests
  • Loading branch information
mhbuehler authored Dec 4, 2024
2 parents 84ec278 + c9fe70e commit 7f7236d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 3 additions & 1 deletion MultimodalQnA/tests/test_compose_on_gaudi.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ export caption_fn="apple.txt"

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 ../
# TODO: Revert to the clone of opea-project "main" before merge
# git clone https://github.com/opea-project/GenAIComps.git && cd GenAIComps && git checkout "${opea_branch:-"main"}" && cd ../
git clone --single-branch --branch="mmqna-audio-query" https://github.com/mhbuehler/GenAIComps.git
echo "Build all the images with --no-cache, check docker_image_build.log for details..."
service_list="multimodalqna multimodalqna-ui embedding-multimodal-bridgetower embedding-multimodal retriever-multimodal-redis lvm-tgi dataprep-multimodal-redis"
docker compose -f build.yaml build ${service_list} --no-cache > ${LOG_PATH}/docker_image_build.log
Expand Down
5 changes: 3 additions & 2 deletions MultimodalQnA/tests/test_compose_on_xeon.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,9 @@ export caption_fn="apple.txt"

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 ../

# TODO: Revert to the clone of opea-project "main" before merge
# git clone https://github.com/opea-project/GenAIComps.git && cd GenAIComps && git checkout "${opea_branch:-"main"}" && cd ../
git clone --single-branch --branch="mmqna-audio-query" https://github.com/mhbuehler/GenAIComps.git
echo "Build all the images with --no-cache, check docker_image_build.log for details..."
service_list="multimodalqna multimodalqna-ui embedding-multimodal-bridgetower embedding-multimodal retriever-multimodal-redis lvm-llava lvm-llava-svc dataprep-multimodal-redis"
docker compose -f build.yaml build ${service_list} --no-cache > ${LOG_PATH}/docker_image_build.log
Expand Down

0 comments on commit 7f7236d

Please sign in to comment.