From 4971aee862caf0eb6673e9d03e8ca2d9b0616131 Mon Sep 17 00:00:00 2001 From: chensuyue Date: Wed, 2 Apr 2025 22:51:33 +0800 Subject: [PATCH 1/2] remove concurrency in image build and push workflow, cause the build scope is not the same for each push. Signed-off-by: chensuyue --- .github/workflows/push-image-build.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/push-image-build.yml b/.github/workflows/push-image-build.yml index 6725724264..1b8b165e84 100644 --- a/.github/workflows/push-image-build.yml +++ b/.github/workflows/push-image-build.yml @@ -14,10 +14,6 @@ on: - '**/requirements.txt' - '.github/workflows/push-image-build.yml' -concurrency: - group: ${{ github.workflow }}-${{ github.ref }}-on-push - cancel-in-progress: true - jobs: get-build-matrix: runs-on: ubuntu-latest From 678da2c4ee1115d20fb3d52874075a36033a48b3 Mon Sep 17 00:00:00 2001 From: chensuyue Date: Thu, 3 Apr 2025 12:10:15 +0800 Subject: [PATCH 2/2] remove duplicate container name Signed-off-by: chensuyue --- tests/agent/test_agent_langchain_on_intel_hpu.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/agent/test_agent_langchain_on_intel_hpu.sh b/tests/agent/test_agent_langchain_on_intel_hpu.sh index ebcf4a3212..32688ca14d 100644 --- a/tests/agent/test_agent_langchain_on_intel_hpu.sh +++ b/tests/agent/test_agent_langchain_on_intel_hpu.sh @@ -191,7 +191,8 @@ function start_react_langgraph_agent_service_openai() { function start_react_llama_agent_service() { echo "Starting redis for testing agent persistent" - docker run -d -it -p 6379:6379 --rm --name "test-persistent-redis" --net=host --ipc=host --name redis-vector-db redis/redis-stack:7.2.0-v9 + docker run -d -it -p 6379:6379 --rm --name "test-persistent-redis" --net=host --ipc=host redis/redis-stack:7.2.0-v9 + docker ps echo "Starting react_llama agent microservice" docker compose -f $WORKPATH/tests/agent/reactllama.yaml up -d