-
Notifications
You must be signed in to change notification settings - Fork 281
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
pixi/0.39.4 package update #38302
pixi/0.39.4 package update #38302
Conversation
octo-sts
bot
commented
Dec 24, 2024
Signed-off-by: wolfi-bot <[email protected]>
Gen AI suggestions to solve the build error: Let me analyze this build error and provide specific recommendations. • Detected Error:
• Error Category: Dependency • Failure Point: During the • Root Cause Analysis: There's a version conflict between quinn-proto and quinn packages. Specifically, quinn v0.11.6 requires quinn-proto with the • Suggested Fix:
environment:
contents:
packages:
- build-base
- busybox
- ca-certificates-bundle
- cargo-auditable
- openssl
- openssl-dev
- perl
- rust>=1.83.0
- wolfi-base
pipeline:
- uses: git-checkout
with:
repository: https://github.com/prefix-dev/pixi
expected-commit: a343eef1d6b6be5e620a9dc4f156bc3ad837d40a
tag: v${{package.version}}
- name: Pre-configure
runs: |
cargo update -p quinn-proto --precise 0.11.6
cargo update -p quinn --precise 0.11.6
- uses: rust/cargobump
- name: Configure and build
runs: |
cargo auditable build --release
mkdir -p ${{targets.destdir}}/usr/bin/
mv target/release/pixi ${{targets.destdir}}/usr/bin/ • Explanation: The error occurs because newer versions of quinn-proto removed the rustls-ring feature. By explicitly pinning the versions of both quinn and quinn-proto to compatible versions, we ensure the build can proceed with matching feature sets. • Additional Notes:
• References:
|
Signed-off-by: Batuhan Apaydin <[email protected]>
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.
🤔 Cargobump automation should cleaning itself