docs(port): record Linux gate results — 228 tests green on domedog (Sam & Claude)
Some checks failed
CI / rust (pull_request) Has been cancelled
CI / markdown (pull_request) Has been cancelled
CI / port (pull_request) Has been cancelled

Verified the 0.11.0 release tree on Linux (domedog.pro, Debian) before
tagging:
  cargo fmt --check             
  cargo build --workspace --release   (4m 31s)
  cargo clippy -D warnings      
  cargo test --workspace         (228 passed, 0 failed)

FreeBSD runtime validation remains the pre-poudriere step.
This commit is contained in:
Sam & Claude 2026-06-20 22:40:25 +02:00
parent f368d446f5
commit d77e46ec92

View file

@ -59,6 +59,25 @@ port — the clawdie-iso repo consumes it from here and keeps no duplicate.
poudriere-build.sh --jail clawdie-amd64 --ports clawdie sysutils/colibri
```
## Validation
### Linux cross-build gate (domedog, 2026-06-20)
The source tree is cross-platform (FreeBSD + Linux). Before tagging, the full
Rust gate was verified on Linux (`domedog.pro`, Debian):
```sh
cargo fmt --check # ✅ clean
cargo build --workspace --release # ✅ 4m 31s
cargo clippy --workspace --all-targets -- -D warnings # ✅ zero warnings
cargo test --workspace # ✅ 228 passed, 0 failed
```
228 tests cover all 13 crates including unit, integration, golden, and
live-socket tests. This confirms the `0.11.0` tree compiles and passes on
Linux. FreeBSD runtime validation (`cargo test` on FreeBSD 15) is the
remaining step before the first poudriere build.
## Notes
- **License:** MIT (matches `Cargo.toml`; same as layered-soul).