fix(ci): fetch pinned OVN commit directly for release-1.14 - #6892
Merged
zhangzujian merged 1 commit intoJun 18, 2026
Merged
Conversation
Signed-off-by: zhangzujian <zhangzujian.7@gmail.com>
zhangzujian
force-pushed
the
fix-base-ovn-pinned-fetch-release-1.14
branch
from
June 18, 2026 06:07
7fc3197 to
e25b371
Compare
Contributor
There was a problem hiding this comment.
Copilot wasn't able to review any files in this pull request.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
oilbeater
approved these changes
Jun 18, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
release-1.14by fetching the pinned OVN commit directly.git clone --depth=50 branch-24.03 && git checkout <sha>with a depth-1 fetch of the exact commit used by the Dockerfile.branch-24.03.Root cause
The scheduled Build Base workflow failed because the Dockerfile cloned
branch-24.03with--depth=50, then checked outef8f5c1ac63e8094eaf13507013e310991db45a2. That commit is no longer included in the shallow clone window, so checkout failed with:Verification
git fetch --depth=1 origin ef8f5c1ac63e8094eaf13507013e310991db45a2can fetch and check out the pinned commit.release-1.14OVN patches apply cleanly on the fetched commit.make lint, then interrupted it after the user requested not to fix lint issues; only the Dockerfile change is included.