From 5da4839c5a9f88f2a4ad51d41143d24ec153833e Mon Sep 17 00:00:00 2001 From: Ashwin Bharambe Date: Fri, 21 Mar 2025 08:35:06 -0700 Subject: [PATCH] single quotes --- .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 49b022c37..e03c7401c 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