ci: pin foundry SHA for invariant tests#3768
Merged
Merged
Conversation
Pins the foundry checkout in specs.yml to a specific SHA on mablr/alloy_bump_without_op instead of tracking master. The branch ships an alloy 2.0.4 bump with OP stack support stripped, which unblocks tempo's reth bump (#3761) without requiring an alloy-evm 0.34 port of alloy-op-evm/op-reth. Amp-Thread-ID: https://ampcode.com/threads/T-019ddd67-4b2a-757e-88b3-3c395d034b32 Co-authored-by: Amp <amp@ampcode.com>
0xrusowsky
approved these changes
Apr 30, 2026
Thegreatsura
pushed a commit
to Thegreatsura/tempo
that referenced
this pull request
May 2, 2026
## Problem The Argo `invariant-tests` workflow has been failing with exit code 1 (compile error) since ~Apr 28. The workflow clones without `--recursive`, so `lib/forge-std/` is empty and forge auto-installs from `foundry.lock`. `foundry.lock` pinned `forge-std` to `f61e4dd1` which **lacks `signEd25519`**, while the git submodule already points to `e72518ef` which **has it**. This causes: ``` Error (9582): Member "signEd25519" not found or not visible after argument-dependent lookup in contract Vm. ``` in `ValidatorConfigV2.t.sol`. GHA `specs.yml` passes because it clones with `submodules: recursive` (uses the submodule version directly). ## Fix Update `tips/verify/foundry.lock` to pin `forge-std` to `e72518ef87be67df939a70b0ff1cb349e92b6dde`, matching the submodule. ## Context - The foundry-branch pin fix (PR tempoxyz#3768 / workflows tempoxyz#419) resolved the earlier revm mismatch (exit 101) but did not address this second issue. - Slack thread: https://tempoxyz.slack.com/archives/C0A6PD3BQ3F/p1777601759314299 Co-authored-by: Centaur AI <ai@centaur.local> Co-authored-by: Amp <amp@ampcode.com>
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.
Pins the foundry checkout in
specs.ymltobe874c9finstead of trackingmaster.The branch (
mablr/alloy_bump_without_op) ships an alloy 2.0.4 bump with OP stack support stripped, which unblocks the invariant-test build after #3761 moved tempo to alloy 2.0.4 / alloy-evm 0.34.Verified locally:
forge testagainsttips/verifyruns clean — 482 passed, 0 failed, 6 skipped.