From f550d921bec511c513bfd70b46b4f8dc9598b4a1 Mon Sep 17 00:00:00 2001 From: Ashwin Bharambe Date: Mon, 18 Aug 2025 14:50:24 -0700 Subject: [PATCH] yes2 --- .github/actions/run-and-record-tests/action.yml | 4 ++++ .github/actions/setup-runner/action.yml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/actions/run-and-record-tests/action.yml b/.github/actions/run-and-record-tests/action.yml index 5c7ae6d6e..505ae6bbf 100644 --- a/.github/actions/run-and-record-tests/action.yml +++ b/.github/actions/run-and-record-tests/action.yml @@ -36,6 +36,10 @@ runs: - name: Run Integration Tests shell: bash run: | + # TODO: make sure this virtual environment is the same as the one used in the setup-runner action + VIRTUAL_ENV=github-actions-runner + source $VIRTUAL_ENV/bin/activate + uv run --verbose --active ./scripts/integration-tests.sh \ --stack-config '${{ inputs.stack-config }}' \ --provider '${{ inputs.provider }}' \ diff --git a/.github/actions/setup-runner/action.yml b/.github/actions/setup-runner/action.yml index 67acb309f..77fb58d53 100644 --- a/.github/actions/setup-runner/action.yml +++ b/.github/actions/setup-runner/action.yml @@ -31,7 +31,7 @@ runs: uv sync --active --all-groups echo "Installing ad-hoc dependencies" - uv pip install ollama faiss-cpu + uv pip install faiss-cpu # Install llama-stack-client-python based on the client-version input if [ "${{ inputs.client-version }}" = "latest" ]; then