Skip to content

feat: migrate to soldeer + use upstream CI reusable#109

Merged
thedavidmeister merged 4 commits into
mainfrom
2026-05-12-soldeer
May 12, 2026
Merged

feat: migrate to soldeer + use upstream CI reusable#109
thedavidmeister merged 4 commits into
mainfrom
2026-05-12-soldeer

Conversation

@thedavidmeister
Copy link
Copy Markdown
Contributor

Summary

Drop git submodules in favour of soldeer-managed dependencies, in preparation for publishing this repo to soldeer.xyz so downstream consumers (rain.interpreter, etc.) can pick it up via a versioned dep.

  • foundry.toml: [dependencies] block, [soldeer] recursive_deps = false, libs = ["dependencies"]
  • .soldeerignore: exclude dev/CI metadata from the published zip
  • .github/workflows/publish-soldeer.yaml: tag-driven publish via rainix reusable
  • .github/workflows/rainix.yamlrainix-sol.yaml: thin wrapper around upstream rainix sol reusable
  • REUSE.toml: cover soldeer.lock and .soldeerignore; drop .gitmodules
  • Imports rewritten to versioned soldeer paths
  • .gitignore: ignore dependencies/, remappings.txt, .env, .pre-commit-config.yaml, .claude (and target for rain.metadata)

Test plan

  • compile clean locally
  • reuse lint clean
  • After merge: tag v0.1.0 to trigger soldeer publish

Generated with Claude Code.

Drop git submodules in favour of soldeer-managed dependencies, in preparation for publishing rain.metadata to soldeer.xyz.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
@thedavidmeister thedavidmeister self-assigned this May 12, 2026
@coderabbitai
Copy link
Copy Markdown

coderabbitai Bot commented May 12, 2026

Warning

Rate limit exceeded

@thedavidmeister has exceeded the limit for the number of commits that can be reviewed per hour. Please wait 10 minutes and 8 seconds before requesting another review.

You’ve run out of usage credits. Purchase more in the billing tab.

⌛ How to resolve this issue?

After the wait time has elapsed, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

We recommend that you space out your commits to avoid hitting the rate limit.

🚦 How do rate limits work?

CodeRabbit enforces hourly rate limits for each developer per organization.

Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout.

Please see our FAQ for further information.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: ASSERTIVE

Plan: Pro

Run ID: f44a0ba3-8a1f-4412-a2dc-7b2df7200aea

📥 Commits

Reviewing files that changed from the base of the PR and between 474ab47 and 4b6ece9.

⛔ Files ignored due to path filters (1)
  • soldeer.lock is excluded by !**/*.lock
📒 Files selected for processing (19)
  • .github/workflows/publish-soldeer.yaml
  • .github/workflows/rainix-sol.yaml
  • .github/workflows/rainix.yaml
  • .github/workflows/subgraph-test.yaml
  • .gitignore
  • .gitmodules
  • .soldeerignore
  • REUSE.toml
  • foundry.toml
  • lib/forge-std
  • lib/rain.deploy
  • script/Deploy.sol
  • test/concrete/MetaBoard.hash.t.sol
  • test/concrete/MetaBoard.t.sol
  • test/lib/LibDescribedByMeta.emitForDescribedAddress.t.sol
  • test/lib/LibMeta.checkMetaHashedV1_2.t.sol
  • test/lib/LibMeta.checkMetaUnhashedV1_2.t.sol
  • test/lib/LibMeta.isRainMetaV1_2.t.sol
  • test/lib/deploy/LibMetaBoardDeploy.t.sol
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch 2026-05-12-soldeer

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

thedavidmeister and others added 3 commits May 12, 2026 23:06
The upstream sol-test workflow exports ARBITRUM_RPC_URL / BASE_RPC_URL
/ BASE_SEPOLIA_RPC_URL / FLARE_RPC_URL / POLYGON_RPC_URL / ETH_RPC_URL,
not the legacy CI_FORK_*_RPC_URL names. Update test calls to match so
fork tests can find their RPC URLs in CI.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
After dropping submodules, the subgraph workflow's compile step can't find forge-std and rain-deploy. Install via soldeer in the same shape the rainix-sol workflow does.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
@thedavidmeister thedavidmeister merged commit 3c8a389 into main May 12, 2026
5 checks passed
@github-actions
Copy link
Copy Markdown
Contributor

@coderabbitai assess this PR size classification for the totality of the PR with the following criterias and report it in your comment:

S/M/L PR Classification Guidelines:

This guide helps classify merged pull requests by effort and complexity rather than just line count. The goal is to assess the difficulty and scope of changes after they have been completed.

Small (S)

Characteristics:

  • Simple bug fixes, typos, or minor refactoring
  • Single-purpose changes affecting 1-2 files
  • Documentation updates
  • Configuration tweaks
  • Changes that require minimal context to review

Review Effort: Would have taken 5-10 minutes

Examples:

  • Fix typo in variable name
  • Update README with new instructions
  • Adjust configuration values
  • Simple one-line bug fixes
  • Import statement cleanup

Medium (M)

Characteristics:

  • Feature additions or enhancements
  • Refactoring that touches multiple files but maintains existing behavior
  • Breaking changes with backward compatibility
  • Changes requiring some domain knowledge to review

Review Effort: Would have taken 15-30 minutes

Examples:

  • Add new feature or component
  • Refactor common utility functions
  • Update dependencies with minor breaking changes
  • Add new component with tests
  • Performance optimizations
  • More complex bug fixes

Large (L)

Characteristics:

  • Major feature implementations
  • Breaking changes or API redesigns
  • Complex refactoring across multiple modules
  • New architectural patterns or significant design changes
  • Changes requiring deep context and multiple review rounds

Review Effort: Would have taken 45+ minutes

Examples:

  • Complete new feature with frontend/backend changes
  • Protocol upgrades or breaking changes
  • Major architectural refactoring
  • Framework or technology upgrades

Additional Factors to Consider

When deciding between sizes, also consider:

  • Test coverage impact: More comprehensive test changes lean toward larger classification
  • Risk level: Changes to critical systems bump up a size category
  • Team familiarity: Novel patterns or technologies increase complexity

Notes:

  • the assessment must be for the totality of the PR, that means comparing the base branch to the last commit of the PR
  • the assessment output must be exactly one of: S, M or L (single-line comment) in format of: SIZE={S/M/L}
  • do not include any additional text, only the size classification
  • your assessment comment must not include tips or additional sections
  • do NOT tag me or anyone else on your comment

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant