Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/daily-byok-ollama-test.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions .github/workflows/daily-byok-ollama-test.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ steps:
env:
OLLAMA_HOST: "0.0.0.0:11434"
OLLAMA_LOG: "/tmp/gh-aw/ollama-serve.log"
# runner-guard:ignore RGS-012 -- loopback-only readiness probes to the Ollama service started in this step; no secrets are sent.
run: |
sudo systemctl stop ollama 2>/dev/null || true
sleep 2
Expand Down Expand Up @@ -66,6 +67,7 @@ steps:
env:
OLLAMA_MODEL: "qwen2.5:0.5b"
OLLAMA_LOG: "/tmp/gh-aw/ollama-serve.log"
# runner-guard:ignore RGS-012 -- loopback-only model warm-up request to the local Ollama service.
run: |
# Force Ollama to load the model into memory before the agent runs.
# A cold model (not yet loaded) can cause the OpenAI-compatible /v1/chat/completions
Expand Down Expand Up @@ -108,6 +110,7 @@ steps:
- name: Verify Ollama BYOK readiness
env:
OLLAMA_MODEL: "qwen2.5:0.5b"
# runner-guard:ignore RGS-012 -- loopback-only readiness probe for the local Ollama service; no secrets are sent.
run: |
echo "Checking Ollama model availability..."
if ! ollama list | grep -Fq "$OLLAMA_MODEL"; then
Expand All @@ -131,6 +134,7 @@ steps:
- name: Test Ollama chat completions outside AWF
env:
OLLAMA_MODEL: "qwen2.5:0.5b"
# runner-guard:ignore RGS-012 -- loopback-only inference request to the local Ollama service.
run: |
RESPONSE_FILE=/tmp/gh-aw/ollama-chat-response.json
# runner-guard:ignore RGS-012 -- loopback-only inference request to the local Ollama service.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/daily-model-inventory.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions .github/workflows/daily-model-inventory.md
Original file line number Diff line number Diff line change
Expand Up @@ -321,6 +321,7 @@ steps:

- name: Predownload models.dev API index
shell: bash
# runner-guard:ignore RGS-012 -- unauthenticated GET from a public read-only model index; no secrets are sent.
run: |
set -euo pipefail
OUT="/tmp/gh-aw/agent/model-inventory/models-dev"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs-noob-tester.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions .github/workflows/docs-noob-tester.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ pre-agent-steps:
echo $PID > /tmp/gh-aw/agent/server.pid
echo "Server PID: $PID"
- name: Wait for server readiness
# runner-guard:ignore RGS-012 -- loopback-only port/readiness checks for the docs server started above; no external traffic or secrets are sent.
run: |
MAX_WAIT=135 # 45 attempts × 3s = 135s max wait
WAITED=0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/visual-regression-checker.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions .github/workflows/visual-regression-checker.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ steps:
echo "Server PID: $PID"

- name: Wait for server readiness
# runner-guard:ignore RGS-012 -- loopback-only port/readiness checks for the docs server started in this job; no external network or secrets are involved.
run: |
MAX_WAIT=90
WAITED=0
Expand Down
Loading