-
Notifications
You must be signed in to change notification settings - Fork 419
confluent-kafka/8.1.0.27 package update #58380
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
octo-sts
bot
commented
Jul 4, 2025
Signed-off-by: wolfi-bot <[email protected]>
🔄 Build Failed: Git Checkout Error
Build Details
Root Cause Analysis 🔍The build is attempting to clone a specific branch (v8.1.0-27-ccs) from the Confluent Kafka repository, but this branch doesn't exist in the remote repository. The git checkout operation failed because it couldn't find the specified branch. 🔍 Build failure fix suggestionsFound similar build failures that have been fixed in the past and analyzed them to suggest a fix: Suggested ChangesFile: melange.yaml
Replacement: File: melange.yaml
Replacement: Click to expand fix analysisAnalysisThe build failure is occurring because the Git checkout step is trying to fetch a branch named "v8.1.0-27-ccs" from the Confluent Kafka repository, but this branch doesn't exist. Looking at the Melange YAML file, I can see that the var-transforms section is creating a "mangled-package-version" variable that's being used in the git-checkout step as the tag parameter. This suggests that the repository likely uses tags rather than branches for versioning, but the current configuration is incorrectly specifying this as a branch parameter. Click to expand fix explanationExplanationThe main issue is that the git-checkout step is incorrectly configured. The error message indicates that the build is trying to find a remote branch named 'v8.1.0-27-ccs', but it's failing with "Remote branch v8.1.0-27-ccs not found in upstream origin". Looking at the error message more closely, the command that's failing is: The key issue is that the The fix changes the Additionally, I've updated the This should address the core issue where the build system is trying to find a branch that doesn't exist, by ensuring the YAML configuration matches the expected command-line parameters. Click to expand alternative approachesAlternative Approaches
Was this comment helpful? Please use 👍 or 👎 reactions on this comment. |
|
superseded by #58404 |