ci: adopt rainix nix-cachix-setup composite in manual-sol-artifacts, drop deprecated DeterminateSystems nix installer#485
Conversation
…drop deprecated DeterminateSystems nix installer Closes #484 Co-Authored-By: Claude <noreply@anthropic.com>
|
Warning Review limit reached
Next review available in: 56 minutes Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available. How can I continue?After more reviews become available, a review can be triggered using the To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews. How do review limits work?CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability. For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window. Please refer docs for additional details. Review details⚙️ Run configurationConfiguration used: Organization UI Review profile: ASSERTIVE Plan: Pro Run ID: 📒 Files selected for processing (1)
✨ Finishing Touches🧪 Generate unit tests (beta)
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. Comment |
|
🤖 ai:vetter |
Closes #484
What
Replaces the deprecated
DeterminateSystems/nix-installer-action@v4(+magic-nix-cache-action@v2) in.github/workflows/manual-sol-artifacts.yamlwith the org-standard shared compositerainlanguage/rainix/.github/actions/nix-cachix-setup@main, which bundles nix-quick-install + Cachix +cache-nix-actionand pins every third-party action to an exact SHA (single source of truth — "rainix owns shared CI"). The pre-existingactions/checkout@v4step (withsubmodules: recursive+fetch-depth: 0) is kept, so the composite is called withcheckout: 'false'. The twonix develop --command rainix-sol-{prelude,artifacts}deploy steps and all deploy secrets/env (ETH_RPC_URL,ETHERSCAN_API_KEY,DEPLOYMENT_KEY) are untouched.This is the same swap already applied and green on the sibling PRs rainlanguage/sqlite-web#31, rainlanguage/rainlang-codemirror#32, rainlanguage/rain.subgraph.docker#13, and rainlanguage/rain.webapp#357.
QA
CI-infrastructure-only change: it touches a single GitHub Actions workflow file and no source or test code, so there is no behavioral code surface to mutation-test — the oracle is the workflow run itself.
manual-sol-artifacts.yamlisworkflow_dispatch-triggered (a manual per-network deploy), so this PR's push does not auto-exercise the swap the way anon: pushCI workflow would. The equivalence argument below carries the confidence instead.magic-nix-cache→ composite swap is already green on the sibling PRs above; the composite's input contract (checkout,cachix-auth-token) matchesnix-cachix-setup/action.ymlonrainix@main, and this deploy workflow's shape (single checkout + installer, no customextra-conf) is exactly the shape the composite supports.checkout: 'false'preserves the existingactions/checkout@v4(submodules + full depth). An emptyCACHIX_AUTH_TOKENdegrades to a read-only Cachix pull (the composite's documented default). The deployrunsteps and all network-selecting secrets are unchanged, so deploy behavior is identical — only the Nix install mechanism moves to the org standard.DeterminateSystems/nix-installer-actionwith org-standard nix-quick-install #484.Co-Authored-By: Claude noreply@anthropic.com