-
Notifications
You must be signed in to change notification settings - Fork 416
Adding VersionStream for gitaly-18.6 #72534
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: Checksum Verification Failed
Build Details
Root Cause Analysis 🔍The Git tag v18.6.0 points to a different commit hash than expected. The build configuration expects commit f7bcfb3d43d8cdc7259632a49d580966c85ac92f but the actual tag points to 2403c99a98d616668c5a34eaf99cc192af7989c5. This indicates either the tag was moved/updated upstream or the expected commit hash in the build configuration is incorrect. 🔍 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: gitaly-18.6.yaml
Replacement: Content: Click to expand fix analysisAnalysisAll three similar fixes follow an identical pattern: when there's a mismatch between the expected commit hash and the actual commit hash for a git tag, the solution is to update the Click to expand fix explanationExplanationThis fix addresses the root cause of the checksum mismatch error by updating the expected commit hash to match what the tag v18.6.0 actually points to in the upstream repository. The error indicates that the build system expected commit f7bcfb3d43d8cdc7259632a49d580966c85ac92f but found 2403c99a98d616668c5a34eaf99cc192af7989c5. This is a common issue in GitLab repositories where tags may be moved or updated after initial release. By updating the expected-commit field to 2403c99a98d616668c5a34eaf99cc192af7989c5, the git-checkout step will successfully validate the tag and proceed with the build. This approach is proven effective as shown by the three similar fixes that all resolved identical checksum mismatch errors by updating the expected commit hash to match the actual tag reference. Click to expand alternative approachesAlternative Approaches
Was this comment helpful? Please use 👍 or 👎 reactions on this comment. |
dc4fdba to
cd8d140
Compare
Fixes the reported go version module with the package version. Signed-off-by: David Negreira <[email protected]>
|
The go module version wasn't being reported properly: Fixed on: 5a5a8bf |
aborrero
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.
LGTM.
No description provided.