Implement native AgentManager services (#59)
All checks were successful
Native code generation / deterministic (push) Successful in 12m0s
Imaging and meshing gate / native (push) Successful in 4m3s
Native Rust workspace compile / compile (push) Successful in 4m4s

This commit is contained in:
2026-08-09 22:07:51 +00:00
parent c8b2317e13
commit 9c9d5b91f1
16 changed files with 7464 additions and 1531 deletions

View File

@@ -13,6 +13,7 @@ on:
- "tools/check_api_coverage.py"
- "tools/check_codegen_gate.py"
- "tools/check_milestone_08.py"
- "tools/check_milestone_09_issue_59.py"
- "crates/libremetaverse/Cargo.toml"
- "crates/libremetaverse/src/generated.rs"
- "crates/libremetaverse/src/packets.rs"
@@ -37,6 +38,7 @@ on:
- "tools/check_api_coverage.py"
- "tools/check_codegen_gate.py"
- "tools/check_milestone_08.py"
- "tools/check_milestone_09_issue_59.py"
- "crates/libremetaverse/Cargo.toml"
- "crates/libremetaverse/src/generated.rs"
- "crates/libremetaverse/src/packets.rs"
@@ -69,6 +71,7 @@ jobs:
python3 tools/generate_api_shims.py --check
python3 tools/check_api_coverage.py
python3 tools/check_milestone_08.py
python3 tools/check_milestone_09_issue_59.py
cargo check --manifest-path tests/api-compile/Cargo.toml --locked
- name: Test generated wire codecs and translated parity cases
run: |

View File

@@ -25,5 +25,7 @@ jobs:
components: rustfmt
- name: Check formatting
run: cargo fmt --all -- --check
- name: Audit native AgentManager boundary
run: python3 tools/check_milestone_09_issue_59.py
- name: Compile every workspace target with bounded memory
run: cargo check --workspace --all-targets --locked -j 1