docs: tidy git-visible wording (proof doc heading + requirements comm… #338
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: LLM Acceptance | |
| on: | |
| push: | |
| branches: [main, develop] | |
| pull_request: | |
| branches: [main] | |
| workflow_dispatch: | |
| inputs: | |
| run_live_runtime: | |
| description: "Run the live runtime acceptance lane on a self-hosted runner" | |
| required: false | |
| default: false | |
| type: boolean | |
| permissions: | |
| contents: read | |
| actions: write | |
| concurrency: | |
| group: llm-acceptance-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| llm-acceptance-fast: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.12" | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install -e ".[dev]" | |
| - name: Restore previous LLM eval baseline artifact | |
| env: | |
| GH_TOKEN: ${{ github.token }} | |
| GITHUB_REPOSITORY: ${{ github.repository }} | |
| run: | | |
| mkdir -p reports/llm_eval/baselines | |
| previous_run_id="$( | |
| gh api "repos/$GITHUB_REPOSITORY/actions/artifacts?name=llm-eval-baseline&per_page=20" \ | |
| --jq '.artifacts | |
| | map(select(.expired | not)) | |
| | sort_by(.created_at) | |
| | reverse | |
| | .[0].workflow_run.id // empty' | |
| )" | |
| if [ -z "$previous_run_id" ]; then | |
| echo "No non-expired prior baseline artifact found." | |
| exit 0 | |
| fi | |
| gh run download "$previous_run_id" \ | |
| -R "$GITHUB_REPOSITORY" \ | |
| -n llm-eval-baseline \ | |
| -D reports/llm_eval/baselines | |
| find reports/llm_eval/baselines -maxdepth 2 -type f -print || true | |
| - name: Run fast LLM acceptance gate | |
| run: | | |
| python ops/llm_eval.py \ | |
| --skip-live-runtime \ | |
| --output-root reports/llm_eval/latest \ | |
| --baseline-root reports/llm_eval/baselines | |
| - uses: actions/upload-artifact@v6 | |
| if: always() | |
| with: | |
| name: llm-eval-fast-reports | |
| path: | | |
| reports/llm_eval/latest/ | |
| docs/LLM_ACCEPTANCE_REPORT.md | |
| - uses: actions/upload-artifact@v6 | |
| if: always() | |
| with: | |
| name: llm-eval-baseline | |
| path: reports/llm_eval/baselines/ | |
| llm-acceptance-live: | |
| if: github.event_name == 'workflow_dispatch' && inputs.run_live_runtime | |
| needs: llm-acceptance-fast | |
| runs-on: self-hosted | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.12" | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install -e ".[dev]" | |
| - name: Verify Ollama model availability | |
| run: | | |
| ollama list | |
| ollama list | grep -q 'qwen2.5:7b' | |
| - name: Restore previous LLM eval baseline artifact | |
| env: | |
| GH_TOKEN: ${{ github.token }} | |
| GITHUB_REPOSITORY: ${{ github.repository }} | |
| run: | | |
| mkdir -p reports/llm_eval/baselines | |
| previous_run_id="$( | |
| gh api "repos/$GITHUB_REPOSITORY/actions/artifacts?name=llm-eval-baseline&per_page=20" \ | |
| --jq '.artifacts | |
| | map(select(.expired | not)) | |
| | sort_by(.created_at) | |
| | reverse | |
| | .[0].workflow_run.id // empty' | |
| )" | |
| if [ -z "$previous_run_id" ]; then | |
| echo "No non-expired prior baseline artifact found." | |
| exit 0 | |
| fi | |
| gh run download "$previous_run_id" \ | |
| -R "$GITHUB_REPOSITORY" \ | |
| -n llm-eval-baseline \ | |
| -D reports/llm_eval/baselines | |
| find reports/llm_eval/baselines -maxdepth 2 -type f -print || true | |
| - name: Run live LLM acceptance gate | |
| run: | | |
| python ops/llm_eval.py \ | |
| --output-root reports/llm_eval/latest \ | |
| --baseline-root reports/llm_eval/baselines \ | |
| --live-run-root artifacts/acceptance_runs/llm_eval_live \ | |
| --base-url http://127.0.0.1:18080 | |
| - uses: actions/upload-artifact@v6 | |
| if: always() | |
| with: | |
| name: llm-eval-live-reports | |
| path: | | |
| reports/llm_eval/latest/ | |
| reports/llm_eval/baselines/ | |
| docs/LLM_ACCEPTANCE_REPORT.md | |
| artifacts/acceptance_runs/llm_eval_live/evidence/ |