chore(beep boop 🤖): Bump uv.lock (main, mcore-main) (2026-03-21)#2937
chore(beep boop 🤖): Bump uv.lock (main, mcore-main) (2026-03-21)#2937svcnvidia-nemo-ci wants to merge 1 commit intomainfrom
uv.lock (main, mcore-main) (2026-03-21)#2937Conversation
Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
|
/ok to test 3fa99b6 |
📝 WalkthroughWalkthroughThe Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~3 minutes Possibly related PRs
Suggested reviewers
🚥 Pre-merge checks | ✅ 3 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (3 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ 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 |
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.
Inline comments:
In `@3rdparty/Megatron-LM`:
- Line 1: The submodule 3rdparty/Megatron-LM is pointing to an unreachable
commit b4e4d9618e8dec4fe72adb231b56c209130df811; update the submodule reference
to a reachable commit on the upstream repo (or push the missing commit to
https://github.com/NVIDIA/Megatron-LM.git), then refresh the submodule state: in
your local clone fetch the upstream for the Megatron-LM submodule, check out the
correct commit or branch, run git add 3rdparty/Megatron-LM and commit the
updated gitlink so the repository points to an accessible commit (ensure the
updated commit replaces references to b4e4d9618e8dec4fe72adb231b56c209130df811).
ℹ️ Review info
⚙️ Run configuration
Configuration used: Path: .coderabbit.yaml
Review profile: CHILL
Plan: Pro
Run ID: e11b10e7-1ad0-46c0-936d-3991a34db081
⛔ Files ignored due to path filters (1)
uv.lockis excluded by!**/*.lock
📒 Files selected for processing (2)
.main.commit3rdparty/Megatron-LM
| @@ -1 +1 @@ | |||
| Subproject commit 9ed8b0c4ac8e65d80fb35eecb3656c96b30df943 | |||
| Subproject commit b4e4d9618e8dec4fe72adb231b56c209130df811 | |||
There was a problem hiding this comment.
🧩 Analysis chain
🏁 Script executed:
#!/bin/bash
# Description: Show commits added/removed in the Megatron-LM submodule update
cd 3rdparty/Megatron-LM
# Show commits being added in this update
echo "=== Commits added in this update ==="
git log --oneline 9ed8b0c4ac8e65d80fb35eecb3656c96b30df943..b4e4d9618e8dec4fe72adb231b56c209130df811
echo ""
echo "=== Summary of changes ==="
git log --stat 9ed8b0c4ac8e65d80fb35eecb3656c96b30df943..b4e4d9618e8dec4fe72adb231b56c209130df811Repository: NVIDIA-NeMo/Megatron-Bridge
Length of output: 498
🏁 Script executed:
cd 3rdparty/Megatron-LM 2>/dev/null && pwd || echo "Submodule not initialized"Repository: NVIDIA-NeMo/Megatron-Bridge
Length of output: 110
🏁 Script executed:
# Check the current .gitmodules and submodule configuration
cat .gitmodules 2>/dev/null | grep -A5 "Megatron-LM" || echo "Not found"Repository: NVIDIA-NeMo/Megatron-Bridge
Length of output: 183
🏁 Script executed:
# Try to get information about the new commit from the main repository context
cd . && git log --format="%H %s" -n 20 -- 3rdparty/Megatron-LM 2>/dev/null | head -5Repository: NVIDIA-NeMo/Megatron-Bridge
Length of output: 179
🏁 Script executed:
cd 3rdparty/Megatron-LM && git log --oneline -5Repository: NVIDIA-NeMo/Megatron-Bridge
Length of output: 146
🏁 Script executed:
cd 3rdparty/Megatron-LM && git rev-parse HEADRepository: NVIDIA-NeMo/Megatron-Bridge
Length of output: 111
🏁 Script executed:
cd 3rdparty/Megatron-LM && git log --oneline b4e4d9618e8dec4fe72adb231b56c209130df811~5..b4e4d9618e8dec4fe72adb231b56c209130df811 2>/dev/null || echo "Commit not accessible"Repository: NVIDIA-NeMo/Megatron-Bridge
Length of output: 92
🏁 Script executed:
# Check what the parent repository actually has for the submodule pointer
git ls-files -s | grep Megatron-LMRepository: NVIDIA-NeMo/Megatron-Bridge
Length of output: 141
🏁 Script executed:
# Also check if the new commit exists anywhere
cd 3rdparty/Megatron-LM && git log --all --oneline 2>/dev/null | grep b4e4d96 || echo "Commit b4e4d96 not found in local history"Repository: NVIDIA-NeMo/Megatron-Bridge
Length of output: 112
🏁 Script executed:
# Check git diff to see what's being changed for the submodule
git diff HEAD 3rdparty/Megatron-LM 2>/dev/null | head -20Repository: NVIDIA-NeMo/Megatron-Bridge
Length of output: 53
🏁 Script executed:
# Fetch all refs from the submodule remote to see available commits
cd 3rdparty/Megatron-LM && git fetch origin 2>&1 | head -20Repository: NVIDIA-NeMo/Megatron-Bridge
Length of output: 53
🏁 Script executed:
# Now try to find the target commit
cd 3rdparty/Megatron-LM && git log --all --oneline --decorate 2>/dev/null | grep -E "(b4e4d96|3fa99b6)" | head -10Repository: NVIDIA-NeMo/Megatron-Bridge
Length of output: 162
🏁 Script executed:
# Check if target commit exists on remote
cd 3rdparty/Megatron-LM && git ls-remote origin b4e4d9618e8dec4fe72adb231b56c209130df811 2>&1Repository: NVIDIA-NeMo/Megatron-Bridge
Length of output: 53
Cannot verify submodule update—target commit is inaccessible.
The submodule pointer references commit b4e4d9618e8dec4fe72adb231b56c209130df811, but this commit is not accessible in the submodule repository. The current HEAD (3fa99b63a372b1d0ac3415f5dd50a035c8ee0fef) differs from the expected pointer, and the target commit cannot be found in local or remote history. Ensure the target commit exists on https://github.com/NVIDIA/Megatron-LM.git and is reachable before merging.
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.
In `@3rdparty/Megatron-LM` at line 1, The submodule 3rdparty/Megatron-LM is
pointing to an unreachable commit b4e4d9618e8dec4fe72adb231b56c209130df811;
update the submodule reference to a reachable commit on the upstream repo (or
push the missing commit to https://github.com/NVIDIA/Megatron-LM.git), then
refresh the submodule state: in your local clone fetch the upstream for the
Megatron-LM submodule, check out the correct commit or branch, run git add
3rdparty/Megatron-LM and commit the updated gitlink so the repository points to
an accessible commit (ensure the updated commit replaces references to
b4e4d9618e8dec4fe72adb231b56c209130df811).
🚀 PR to bump
uv.lockinmain.🤖 This PR will be merged automatically once CI passes.
Summary by CodeRabbit