-
Notifications
You must be signed in to change notification settings - Fork 278
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
libmamba/2024.12.12 package update #36642
base: main
Are you sure you want to change the base?
Conversation
octo-sts
bot
commented
Dec 12, 2024
Signed-off-by: wolfi-bot <121097084+wolfi-bot@users.noreply.github.com>
Gen AI suggestions to solve the build error: Based on the error output and context provided, let me analyze this build failure: • Detected Error: No explicit error message is shown, but the build appears to stop after package installation without proceeding to the build steps • Error Category: Configuration/Version • Failure Point: Git checkout step (likely failing silently) • Root Cause Analysis: The package version "2024.12.12" specified in the melange.yaml doesn't match any existing tag in the mamba repository. The expected-commit hash is specified but doesn't align with the version tag being used. • Suggested Fix:
package:
name: libmamba
version: 1.5.7
- uses: git-checkout
with:
expected-commit: 4cbb3f7de08b75a5bffd50fd6b4bb79f0291dd42
repository: https://github.com/mamba-org/mamba
tag: ${{package.version}} • Explanation: The version "2024.12.12" appears to be an invalid version that doesn't correspond to any tag in the mamba repository. Looking at the mamba repository releases, 1.5.7 is the latest stable version. The git-checkout step requires both the commit hash and tag to be valid and matching. • Additional Notes:
• References:
|
See #36183 for planned mamba changes |
Signed-off-by: Debasish Biswas <debasishbsws.dev@gmail.com>
Gen AI suggestions to solve the build error: • Detected Error: "patching file libmamba/CMakeLists.txt • Error Category: Build/Configuration • Failure Point: Patch application step failed when trying to modify libmamba/CMakeLists.txt • Root Cause Analysis: The patch file "support-shared-libs.patch" contains changes that don't match the target file's content at line 445, likely due to upstream changes in the CMakeLists.txt file • Suggested Fix:
• Explanation: The patch failure indicates the CMakeLists.txt file has changed in the upstream repository at the specified commit. The patch needs to be regenerated against the exact version being built to ensure proper alignment. • Additional Notes:
• References:
|