chore(beep boop 🤖): Bump uv.lock (r0.4.0, mcore-core_r0.17.0) (2026-04-16) - #3353
chore(beep boop 🤖): Bump uv.lock (r0.4.0, mcore-core_r0.17.0) (2026-04-16)#3353svcnvidia-nemo-ci wants to merge 2 commits into
uv.lock (r0.4.0, mcore-core_r0.17.0) (2026-04-16)#3353Conversation
…-04-16) Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
|
/ok to test bbdb5b1 |
📝 WalkthroughWalkthroughUpdated the stored Megatron-LM commit reference in Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 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)
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 pointer for 3rdparty/Megatron-LM is referencing a
non-existent commit (9539a12e1b04a68423f57b3eb41d6125161dca24); fix by verifying
and updating the submodule reference: check .gitmodules for the Megatron-LM
remote URL, ensure it matches the upstream NVIDIA/Megatron-LM repo, run git
submodule sync && git submodule update --init --remote 3rdparty/Megatron-LM to
fetch reachable commits, then reset the submodule pointer to a valid commit or
branch (replace the bad hash in the superproject commit) and commit that update
so the pointer references an existing upstream commit.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: Path: .coderabbit.yaml
Review profile: CHILL
Plan: Pro Plus
Run ID: d48c7c4e-5328-4d71-b896-7eba7eae466b
⛔ 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 d7288711ba278d160d2a5a22c099915c9fe1395c | |||
| Subproject commit 9539a12e1b04a68423f57b3eb41d6125161dca24 | |||
There was a problem hiding this comment.
🧩 Analysis chain
🏁 Script executed:
#!/bin/bash
# Description: Verify the Megatron-LM submodule commit exists upstream and examine changes
# Navigate to the submodule directory
cd 3rdparty/Megatron-LM || exit 1
# Fetch latest from upstream to ensure we have the commit
git fetch origin
# Verify the new commit exists
echo "=== Verifying new commit exists ==="
if git cat-file -t 9539a12e1b04a68423f57b3eb41d6125161dca24 2>/dev/null; then
echo "✓ Commit 9539a12e1b04a68423f57b3eb41d6125161dca24 exists"
else
echo "✗ Commit 9539a12e1b04a68423f57b3eb41d6125161dca24 NOT FOUND"
exit 1
fi
# Show commit message for the new commit
echo -e "\n=== New commit details ==="
git log -1 --oneline 9539a12e1b04a68423f57b3eb41d6125161dca24
# Show summary of changes between old and new commits
echo -e "\n=== Changes between commits ==="
git log --oneline d7288711ba278d160d2a5a22c099915c9fe1395c..9539a12e1b04a68423f57b3eb41d6125161dca24
# Show files changed
echo -e "\n=== Files changed ==="
git diff --stat d7288711ba278d160d2a5a22c099915c9fe1395c..9539a12e1b04a68423f57b3eb41d6125161dca24Repository: NVIDIA-NeMo/Megatron-Bridge
Length of output: 166
The submodule pointer commit cannot be verified — this will cause build failures.
The commit 9539a12e1b04a68423f57b3eb41d6125161dca24 could not be found after fetching from the upstream repository. This indicates either:
- The commit hash is incorrect or contains a typo
- The commit doesn't exist in the upstream Megatron-LM repository
- The submodule remote URL is misconfigured
Verify that the new commit hash 9539a12e1b04a68423f57b3eb41d6125161dca24 exists in the upstream NVIDIA/Megatron-LM repository and is reachable from the branch being tracked.
🤖 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 pointer for
3rdparty/Megatron-LM is referencing a non-existent commit
(9539a12e1b04a68423f57b3eb41d6125161dca24); fix by verifying and updating the
submodule reference: check .gitmodules for the Megatron-LM remote URL, ensure it
matches the upstream NVIDIA/Megatron-LM repo, run git submodule sync && git
submodule update --init --remote 3rdparty/Megatron-LM to fetch reachable
commits, then reset the submodule pointer to a valid commit or branch (replace
the bad hash in the superproject commit) and commit that update so the pointer
references an existing upstream commit.
|
/ok to test |
@ko3n1g, there was an error processing your request: See the following link for more information: https://docs.gha-runners.nvidia.com/cpr/e/1/ |
|
/ok to test |
@ko3n1g, there was an error processing your request: See the following link for more information: https://docs.gha-runners.nvidia.com/cpr/e/1/ |
|
/ok to test aa0ace4 |
🚀 PR to bump
uv.lockinr0.4.0.🤖 This PR will be merged automatically once CI passes.
Summary by CodeRabbit