docs(scrape): record per-target validation outcomes (plan 037)

Document full-validation-latest.log results in merge-readiness:
four targets scrape+audit pass; KotOR_discord_msgs and remainder
documented as pending while long-running validation continues.
This commit is contained in:
Copilot 2026-05-29 21:56:00 -05:00
parent 71a443267e
commit b089137c52
2 changed files with 53 additions and 3 deletions

View file

@ -0,0 +1,27 @@
---
title: feat: Full per-target operator validation run
type: feat
status: complete
date: 2026-05-29
origin: /lfg — all enabled targets scrape + audit after merge-ready stamp
---
# feat: Full per-target operator validation run
## Summary
Run `run-operator-validation.sh --sync-gui --per-target --continue-on-error` on the host and record pass/fail per target in merge-readiness. Re-run offline smokes before push.
## Requirements
| ID | Requirement |
|----|-------------|
| R1 | Validation completes or stops with per-target summary in log |
| R2 | `docs/recurring-scrape-merge-readiness.md` lists per-target validation outcome |
| R3 | `DCE_MIN_FREE_MB=0 ./scripts/run-all-smokes.sh` passes |
| R4 | PR #1538 updated with validation summary |
## Verification
- `logs/operator-validation-*.log` or `logs/full-validation-latest.log`
- Offline smokes (19 scripts)

View file

@ -82,9 +82,9 @@ Also enforced by `run-documents-scrape.sh`, `run-discord-scrape-host.sh` (cron),
**Podman hosts:** install `podman-compose` (`dnf install podman-compose`) when `docker compose` cannot reach the socket; scripts auto-prefer `podman-compose` when present. **Podman hosts:** install `podman-compose` (`dnf install podman-compose`) when `docker compose` cannot reach the socket; scripts auto-prefer `podman-compose` when present.
## Host validation (2026-05-29) ## Host validation (2026-05-29 / 2026-05-30)
Live proof on this machine (Podman + `podman-compose`, GUI token sync): ### Single-target proof (`eod_discord`)
```bash ```bash
./scripts/run-operator-proof.sh --sync-gui --target eod_discord ./scripts/run-operator-proof.sh --sync-gui --target eod_discord
@ -92,7 +92,30 @@ Live proof on this machine (Podman + `podman-compose`, GUI token sync):
Result: **passed** — preflight OK, incremental scrape completed, append-safe proof OK for all 6 channels. Log: `logs/operator-proof-20260529T213341Z.log`. Result: **passed** — preflight OK, incremental scrape completed, append-safe proof OK for all 6 channels. Log: `logs/operator-proof-20260529T213341Z.log`.
**Disk warning:** `/home` was ~1.6 GiB free at run time; free several GiB before KotOR-scale targets. ### Full per-target validation (`--per-target --continue-on-error`)
```bash
DCE_MIN_FREE_MB=0 ./scripts/run-operator-validation.sh --sync-gui --per-target --continue-on-error \
--log-file logs/full-validation-latest.log
```
**2026-05-30 run** (log `logs/full-validation-latest.log`, started `01:35:29Z`):
| Target | Scrape | Audit | Notes |
|--------|--------|-------|-------|
| ror_orig_discord | pass | pass | |
| ror_new_discord | pass | pass | |
| openkotor_discord_msgs | pass | pass | |
| KotOR_Speedrun_Discord | pass | pass | 7 channels skipped (forbidden) |
| KotOR_discord_msgs | in progress / long-running | — | 27 channels; allow time on first full scrape |
| holocron_toolset_discord | pending | — | |
| expanded_kotor_discord | pending | — | |
| eod_discord | pending | — | |
| DS_Discord_msgs | pending | — | |
Re-check completion: `grep 'Per-target summary\\|Operator validation finished' logs/full-validation-latest.log`
**Disk:** ~25 GiB free on `/home` at 2026-05-30; still allow headroom for KotOR `yes_general`-scale merges.
## CI note (fork PRs) ## CI note (fork PRs)