mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-17 21:59:49 +00:00
yes
This commit is contained in:
parent
0dd4a72bbc
commit
0d25c62ab2
2 changed files with 8 additions and 2 deletions
|
|
@ -36,7 +36,7 @@ runs:
|
||||||
- name: Run Integration Tests
|
- name: Run Integration Tests
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
uv run --verbose ./scripts/integration-tests.sh \
|
uv run --verbose --active ./scripts/integration-tests.sh \
|
||||||
--stack-config '${{ inputs.stack-config }}' \
|
--stack-config '${{ inputs.stack-config }}' \
|
||||||
--provider '${{ inputs.provider }}' \
|
--provider '${{ inputs.provider }}' \
|
||||||
--test-subdirs '${{ inputs.test-subdirs }}' \
|
--test-subdirs '${{ inputs.test-subdirs }}' \
|
||||||
|
|
|
||||||
8
.github/actions/setup-runner/action.yml
vendored
8
.github/actions/setup-runner/action.yml
vendored
|
|
@ -21,8 +21,14 @@ runs:
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
|
# explicitly setup a virtual environment distinct from the project one because
|
||||||
|
# we are going to manipulate it via `llama stack build` among other things.
|
||||||
|
VIRTUAL_ENV=github-actions-runner
|
||||||
|
uv venv $VIRTUAL_ENV
|
||||||
|
source $VIRTUAL_ENV/bin/activate
|
||||||
|
|
||||||
echo "Updating project dependencies via uv sync"
|
echo "Updating project dependencies via uv sync"
|
||||||
uv sync --all-groups
|
uv sync --active --all-groups
|
||||||
|
|
||||||
echo "Installing ad-hoc dependencies"
|
echo "Installing ad-hoc dependencies"
|
||||||
uv pip install ollama faiss-cpu
|
uv pip install ollama faiss-cpu
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue