This commit is contained in:
Ashwin Bharambe 2025-08-18 15:03:46 -07:00
parent be40df8a1b
commit 3114e188a8

View file

@ -42,6 +42,9 @@ runs:
- name: Build Llama Stack
shell: bash
run: |
VIRTUAL_ENV=github-actions-runner
source $VIRTUAL_ENV/bin/activate
# Install llama-stack-client-python based on the client-version input
if [ "${{ inputs.client-version }}" = "latest" ]; then
echo "Installing latest llama-stack-client-python from main branch"
@ -55,8 +58,9 @@ runs:
fi
echo "Building Llama Stack"
LLAMA_STACK_DIR=. \
uv run llama stack build --template ci-tests --image-type venv
uv run --active --no-sync llama stack build --template ci-tests --image-type venv
- name: Configure git for commits
shell: bash