-
Notifications
You must be signed in to change notification settings - Fork 416
Adding VersionStream for neo4j-2025.05 #57086
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
Conversation
🔄 Build Failed: Git Checkout Error
Build Details
Root Cause Analysis 🔍The commit hash of the Neo4j tag 2025.05.1 does not match the expected commit hash specified in the build configuration. The build expects commit 5f8fe0ffd86fc325b071486a9dbdde4828465926 but found c4c5bf10117a3cb210834e2ad17fb0d58819868e instead. 🔍 Build failure fix suggestionsFound similar build failures that have been fixed in the past and analyzed them to suggest a fix: Similar PRs with fixesSuggested ChangesFile: neo4j-2025.05.yaml
Replacement: Click to expand fix analysisAnalysisAfter analyzing the similar fixed build failures, I can see a pattern where the git tag checkout operations failed because the expected commit hash didn't match the actual commit hash that the tag points to. In both similar fixes, the solution was to update the The issue appears to be related to how Git tags work - they can either point directly to a commit (lightweight tags) or to a tag object that then points to a commit (annotated tags). When repositories use annotated tags, the commit hash needs to match the commit that the tag object points to, not the tag object itself. Looking at the current build failure, we see a similar pattern where the expected commit (5f8fe0ffd86fc325b071486a9dbdde4828465926) doesn't match the actual commit that the tag 2025.05.1 points to (c4c5bf10117a3cb210834e2ad17fb0d58819868e). Click to expand fix explanationExplanationThe build is failing because there's a mismatch between the expected commit hash specified in the configuration file and the actual commit hash that the tag The error message clearly states: This indicates that when the build system tried to check out the tag Looking at both similar fixed build failures, the solution was to update the Updating the expected-commit value to Click to expand alternative approachesAlternative Approaches
Was this comment helpful? Please use 👍 or 👎 reactions on this comment. |
Signed-off-by: Debasish Biswas <[email protected]>
Signed-off-by: Debasish Biswas <[email protected]>
To fix "[ERROR] scalac error: '21' is not a valid choice for '-target'" Signed-off-by: Debasish Biswas <[email protected]>
AmberArcadia
left a 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.
This already exists in enterprise 🤔
No description provided.