feat(ILO-16): cross-platform MVP — 5 native targets + WASM/WASI#702
Merged
Conversation
- Add `ilo compile --target <triple>` flag validating against the 6 supported triples (5 native + wasm32-wasip1); unsupported triples print the list and exit 1. - Add `cross-platform` and `wasm-smoke` jobs to rust.yml CI matrix so every PR is smoke-tested on all native targets and WASM build. - Switch release.yml Linux targets from gnu to musl (statically linked, no libc dependency) as specified by the ticket. - Silence macOS SDK link warnings via `-mmacosx-version-min=15.0` in .cargo/config.toml (applies automatically on every macOS build in this workspace). - Add docs/deploying.md with per-target build commands, cross-compilation recipes, WASM edge runtime deployment, and the HTTP gap notice. Deferred: wasmtime runtime smoke test, `ilo compile --target` actually driving cargo cross-compilation (currently passes --target through to compile_cmd which will need to wire it to cargo), Windows GNU variant, WASI Preview 2. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Codecov Report❌ Patch coverage is
📢 Thoughts on this report? Let us know! |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
ilo compile --target <triple>flag with validation against the 6 supported triples (5 native +wasm32-wasip1)cross-platformandwasm-smokejobs torust.ymlso every PR is smoke-tested on all 5 native targets and WASM*-gnuto*-musl(statically linked)-mmacosx-version-min=15.0in.cargo/config.tomldocs/deploying.mdwith per-target build commands, cross-compilation recipes, WASM edge runtime deployment, and the HTTP gap noticeTest plan
cargo checkpasses locally (verified)argsunit tests pass (100/100 verified)cross-platformmatrix runs on all 5 native targetswasm-smokebuildswasm32-wasip1without errorsilo compile --target wasm32-wasip1 hello.ilorejects unknown triples with helpful errorDeferred items (follow-up tickets)
ilo compile --targetwiring through to actualcargocross-compilation (currently validates and passes the flag tocompile_cmdwhich needs cargo integration)wasmtimeruntime smoke in CI (adds ~2 min install; deferred)splbuiltin — split text by separator #48 / Architectural C)Closes ILO-16.
🤖 Generated with Claude Code