mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-07-29 07:14:20 +00:00
test: upload logs for external provider tests
currently the external provider tests don't upload log files as artifacts nor do they use LLAMA_STACK_LOG_FILE. align with the other integration tests Signed-off-by: Charlie Doern <cdoern@redhat.com>
This commit is contained in:
parent
3344d8a9e5
commit
682fbb9205
2 changed files with 21 additions and 1 deletions
|
@ -13,7 +13,7 @@ on:
|
||||||
- 'uv.lock'
|
- 'uv.lock'
|
||||||
- 'pyproject.toml'
|
- 'pyproject.toml'
|
||||||
- 'requirements.txt'
|
- 'requirements.txt'
|
||||||
- '.github/workflows/test-external-providers-module.yml' # This workflow
|
- '.github/workflows/test-external-provider-module.yml' # This workflow
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test-external-providers-from-module:
|
test-external-providers-from-module:
|
||||||
|
@ -52,6 +52,7 @@ jobs:
|
||||||
if: ${{ matrix.image-type }} == 'venv'
|
if: ${{ matrix.image-type }} == 'venv'
|
||||||
env:
|
env:
|
||||||
INFERENCE_MODEL: "llama3.2:3b-instruct-fp16"
|
INFERENCE_MODEL: "llama3.2:3b-instruct-fp16"
|
||||||
|
LLAMA_STACK_LOG_FILE: "server.log"
|
||||||
run: |
|
run: |
|
||||||
# Use the virtual environment created by the build step (name comes from build config)
|
# Use the virtual environment created by the build step (name comes from build config)
|
||||||
source ramalama-stack-test/bin/activate
|
source ramalama-stack-test/bin/activate
|
||||||
|
@ -72,3 +73,12 @@ jobs:
|
||||||
echo "Provider failed to load"
|
echo "Provider failed to load"
|
||||||
cat server.log
|
cat server.log
|
||||||
exit 1
|
exit 1
|
||||||
|
|
||||||
|
- name: Upload all logs to artifacts
|
||||||
|
if: ${{ always() }}
|
||||||
|
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
|
||||||
|
with:
|
||||||
|
name: logs-${{ github.run_id }}-${{ github.run_attempt }}-external-provider-module-test
|
||||||
|
path: |
|
||||||
|
*.log
|
||||||
|
retention-days: 1
|
||||||
|
|
10
.github/workflows/test-external.yml
vendored
10
.github/workflows/test-external.yml
vendored
|
@ -52,6 +52,7 @@ jobs:
|
||||||
if: ${{ matrix.image-type }} == 'venv'
|
if: ${{ matrix.image-type }} == 'venv'
|
||||||
env:
|
env:
|
||||||
INFERENCE_MODEL: "meta-llama/Llama-3.2-3B-Instruct"
|
INFERENCE_MODEL: "meta-llama/Llama-3.2-3B-Instruct"
|
||||||
|
LLAMA_STACK_LOG_FILE: "server.log"
|
||||||
run: |
|
run: |
|
||||||
# Use the virtual environment created by the build step (name comes from build config)
|
# Use the virtual environment created by the build step (name comes from build config)
|
||||||
source ci-test/bin/activate
|
source ci-test/bin/activate
|
||||||
|
@ -75,3 +76,12 @@ jobs:
|
||||||
- name: Test external API
|
- name: Test external API
|
||||||
run: |
|
run: |
|
||||||
curl -sSf http://localhost:8321/v1/weather/locations
|
curl -sSf http://localhost:8321/v1/weather/locations
|
||||||
|
|
||||||
|
- name: Upload all logs to artifacts
|
||||||
|
if: ${{ always() }}
|
||||||
|
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
|
||||||
|
with:
|
||||||
|
name: logs-${{ github.run_id }}-${{ github.run_attempt }}-external-test
|
||||||
|
path: |
|
||||||
|
*.log
|
||||||
|
retention-days: 1
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue