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