-
Notifications
You must be signed in to change notification settings - Fork 3
Maintenance #244
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Maintenance #244
Conversation
WalkthroughRemoved references to the main-0.4 Holonix branch across multiple GitHub Actions workflows and README, upgraded Nix installer URLs to nix-2.33.0, adjusted macOS runner targets in some matrices, refactored holonix cache push logic, and bumped the flake nixpkgs input to nixos-25.11. Changes
Estimated code review effort🎯 3 (Moderate) | ⏱️ ~20 minutes Possibly related PRs
Suggested reviewers
Pre-merge checks and finishing touches❌ Failed checks (1 inconclusive)
✅ Passed checks (2 passed)
✨ Finishing touches🧪 Generate unit tests (beta)
📜 Recent review detailsConfiguration used: Organization UI Review profile: CHILL Plan: Pro 📒 Files selected for processing (2)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (14)
🔇 Additional comments (7)
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 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 1
📜 Review details
Configuration used: Organization UI
Review profile: CHILL
Plan: Pro
⛔ Files ignored due to path filters (1)
flake.lockis excluded by!**/*.lock
📒 Files selected for processing (8)
.github/workflows/build.yaml.github/workflows/command-listener.yaml.github/workflows/dispatch-listener.yaml.github/workflows/holonix-cache-trigger.yaml.github/workflows/holonix-cache.yaml.github/workflows/holonix-update.yamlREADME.mdflake.nix
💤 Files with no reviewable changes (3)
- README.md
- .github/workflows/dispatch-listener.yaml
- .github/workflows/holonix-cache-trigger.yaml
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (11)
- GitHub Check: build (macos-latest, hc-scaffold)
- GitHub Check: build (ubuntu-24.04-arm, hc-scaffold)
- GitHub Check: build (ubuntu-latest, bootstrap-srv)
- GitHub Check: build (macos-latest, holochain, hc, hcterm)
- GitHub Check: build (ubuntu-24.04-arm, lair-keystore)
- GitHub Check: build (ubuntu-latest, hc-scaffold)
- GitHub Check: build (ubuntu-24.04-arm, bootstrap-srv)
- GitHub Check: build (ubuntu-latest, lair-keystore)
- GitHub Check: build (ubuntu-latest, holochain, hc, hcterm)
- GitHub Check: build (macos-latest, lair-keystore)
- GitHub Check: build (ubuntu-24.04-arm, holochain, hc, hcterm)
🔇 Additional comments (6)
.github/workflows/build.yaml (2)
114-114: Consistent Nix version updates across jobs.The
buildandtemplatejobs are updated consistently with the same Nix 2.33.0 installer URL.Also applies to: 153-153
30-30: Nix version upgrade to 2.33.0 is valid.The Nix installer URL points to a legitimate release (December 9, 2025) with performance improvements and new features. The upgrade is sound.
.github/workflows/command-listener.yaml (1)
51-51: Consistent Nix version updates.Both
bump_holochainandbump_hc_scaffoldjobs are updated with the same Nix 2.33.0 installer URL, maintaining consistency across all workflows.Also applies to: 78-78
.github/workflows/holonix-update.yaml (1)
11-14: Branch options and Nix version updated correctly.The
main-0.4option is removed from the workflow dispatch inputs, and the Nix installer is updated to 2.33.0, consistent with the PR objectives and other workflow files.Also applies to: 51-51
.github/workflows/holonix-cache.yaml (1)
46-46: Consistent Nix version updates.Both
cache-updateandcache-checkjobs are updated with the Nix 2.33.0 installer URL.Also applies to: 114-114
flake.nix (1)
7-7: Update aligns with stable NixOS 25.11 release.The nixpkgs reference to
nixos-25.11is appropriate and points to a stable, released branch. NixOS 25.11 "Xantusia" is publicly available and receives security updates until 2026-06-30.
.github/workflows/holonix-cache.yaml
Outdated
| nix develop --profile result-develop -c true "github:holochain/holonix?ref=${{ steps.select_branch.outputs.branch }}" | ||
| # Push both results to the cache | ||
| for i in result-*; do | ||
| cachix push holochain-ci $i | ||
| done | ||
| cachix push holochain-ci result-develop |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🏁 Script executed:
find . -name "holonix-cache.yaml" -o -name "*holonix*.yaml" 2>/dev/null | head -20Repository: holochain/holonix
Length of output: 186
🏁 Script executed:
cat -n .github/workflows/holonix-cache.yaml | sed -n '85,95p'Repository: holochain/holonix
Length of output: 611
Fix argument order for nix develop command.
The flake reference must precede the --profile option. Correct syntax: nix develop "github:holochain/holonix?ref=${{ steps.select_branch.outputs.branch }}" --profile result-develop -c true
The current code positions the git URL after -c true, treating it as an argument to the true command rather than the flake installable, which is syntactically incorrect.
🤖 Prompt for AI Agents
In .github/workflows/holonix-cache.yaml around lines 90 to 92, the nix develop
invocation places the flake reference after the -c true flags causing the URL to
be passed to the true command; reorder arguments so the flake ref comes
immediately after nix develop and move --profile result-develop -c true after it
(i.e., call nix develop "github:holochain/holonix?ref=${{
steps.select_branch.outputs.branch }}" --profile result-develop -c true) so the
flake is parsed correctly before profile and command options.
|
✔️ 515ae64...a7cf8d8 - Conventional commits check succeeded. |
Summary by CodeRabbit
✏️ Tip: You can customize this high-level summary in your review settings.