DLPX-93264 24.04 LTS upgrade: kernel builds fail due to rustc conflict#21
Merged
palash-gandhi merged 1 commit intoJan 31, 2025
Conversation
palash-gandhi
force-pushed
the
dlpx/pr/palash-gandhi/30f6c40f-35c1-4d93-bfe9-acfd41db29a1
branch
2 times, most recently
from
January 30, 2025 19:06
0c10369 to
4959c3f
Compare
palash-gandhi
force-pushed
the
dlpx/pr/palash-gandhi/30f6c40f-35c1-4d93-bfe9-acfd41db29a1
branch
from
January 30, 2025 23:28
4959c3f to
aada0f3
Compare
palash-gandhi
marked this pull request as ready for review
January 30, 2025 23:28
sebroy
approved these changes
Jan 30, 2025
palash-gandhi
enabled auto-merge
January 30, 2025 23:47
palash-gandhi
disabled auto-merge
January 30, 2025 23:47
palash-gandhi
enabled auto-merge (squash)
January 30, 2025 23:47
prakashsurya
approved these changes
Jan 31, 2025
palash-gandhi
deleted the
dlpx/pr/palash-gandhi/30f6c40f-35c1-4d93-bfe9-acfd41db29a1
branch
January 31, 2025 14:48
palash-gandhi
added a commit
that referenced
this pull request
Feb 18, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem:
Kernel builds using a 24.04 DE-based buildserver fail with:
Example: https://ops-jenkins.eng-tools-prd.aws.delphixcloud.com/job/linux-pkg/job/os-upgrade/job/build-package/job/linux-kernel-generic/job/pre-push/48/consoleFull
On a DE-based buildserver
delphix-rust's version is 1.0.0:As I understand it, the problem is:
Prakash helped shed some light and the issue turned out to be that
bindgen-0.65required rustc >1.72 but sincedelphix-rust's version 1.0.0 was not going to satisfy the dependency. As such, apt tried to install rustc 1.75 which conflicted withdelphix-rust.Solution:
Change the version of
delphix-rustto be the actual version ofrustcsupplied by the virtual package.Testing
build-package: https://ops-jenkins.eng-tools-prd.aws.delphixcloud.com/job/linux-pkg/job/os-upgrade/job/build-package/job/delphix-rust/job/pre-push/63/console
This change can only be fully tested after merging this change, building a buildserver and finally building the kernel. There is currently no easy way to test this process pre-push for os-upgrade.