From cfdb8adf36a032f1336a2223b3052517aa711764 Mon Sep 17 00:00:00 2001 From: Ashwin Bharambe Date: Fri, 21 Mar 2025 08:34:08 -0700 Subject: [PATCH] if conditional --- .github/workflows/integration-tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index fc1ee2892..49b022c37 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -77,7 +77,7 @@ jobs: exit 1 - name: Start Llama Stack server in background - if: matrix.client-type == "http" + if: matrix.client-type == http env: INFERENCE_MODEL: "meta-llama/Llama-3.2-3B-Instruct" run: | @@ -85,7 +85,7 @@ jobs: nohup uv run llama stack run ./llama_stack/templates/ollama/run.yaml --image-type venv > server.log 2>&1 & - name: Wait for Llama Stack server to be ready - if: matrix.client-type == "http" + if: matrix.client-type == http run: | echo "Waiting for Llama Stack server..." for i in {1..30}; do