fix(ci): move Test + Clippy back to ubuntu-latest (unblocks all open PRs)#102
Merged
Conversation
The smithy migration in #91 moved Test and Clippy to self-hosted rust-cpu runners. Both jobs build the entire workspace including synth-verify, which depends on z3-sys — a large C++ compile that fills the smithy runners' /tmp during code generation ("fatal error: No space left on device" on roughly half the z3 AST source files). Every PR opened after #91 landed has been hitting this. Reverting these two jobs to ubuntu-latest (which has ~14 GB /tmp) unblocks every open PR. The other smithy migrations (Z3 Verification, Code Coverage, Rivet Validation, Format) don't build z3 in the same way and stay on smithy. Once the smithy runner image gets a bigger /tmp partition (or libz3-dev preinstalled so z3-sys uses the system lib), move them back.
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
avrabe
added a commit
that referenced
this pull request
May 11, 2026
…x-M (#97) Closes #93 (silicon-blocking). Root cause: `optimizer_bridge::wasm_to_ir` had no handler for `I64ExtendI32U` / `I64ExtendI32S` / `I32WrapI64` — they fell through to `Opcode::Nop`, leaving their result vregs unmapped. The downstream `get_arm_reg` silent R0 fallback caused subsequent i64 shifts to read R0 as their `rm_lo`/`rm_hi` — destroying memset's destination pointer on real silicon. Fix: add the three missing op handlers in wasm_to_ir + ir_to_arm + analyze_i64_local_gets. 5 regression tests added (3 fail-before-pass-after). Format + Rivet failures are smithy-runner crashes (BlobNotFound on logs — same as #102's pattern). Every functional gate passes.
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.
Every open PR opened after #91 landed has been failing Test + Clippy with
fatal error: No space left on deviceduring z3-sys's C++ build. Both jobs build the entire workspace including synth-verify (which depends on z3), and the smithy rust-cpu runners' /tmp can't hold the z3 AST source's intermediate .s files.This reverts just those two jobs back to ubuntu-latest. The other smithy migrations (Z3 Verification, Code Coverage, Rivet Validation, Format) don't build z3 in the same way and stay on smithy.
This unblocks #97 (silicon-blocking memset fix), #96, #99, #100, #101 — all currently failing on the same disk-full error.
Once the smithy runner image gets a bigger /tmp or libz3-dev preinstalled, we can move these back.