-
Notifications
You must be signed in to change notification settings - Fork 134
Adds support for Azure Linux 3 #51
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
Merged
Merged
Conversation
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
b826b9a
to
10f950f
Compare
e41bdc7
to
84f4d74
Compare
84f4d74
to
dc87cc0
Compare
marosset
reviewed
Jan 9, 2025
a7aa437
to
42a65a7
Compare
19e8106
to
bbd7ba3
Compare
ludfjig
approved these changes
Jan 24, 2025
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.
looks good to me!
marosset
approved these changes
Jan 27, 2025
Nit: s/memoy/memory/ for the commit message of bbd7ba3 |
Signed-off-by: Simon Davies <simongdavies@users.noreply.github.com>
Enable features to be passed when running rust all tests,examples and benchmarks so AZ Linux3 can enabled when any of these are run on an AZ Linux3 host Signed-off-by: Simon Davies <simongdavies@users.noreply.github.com>
Signed-off-by: Simon Davies <simongdavies@users.noreply.github.com>
Signed-off-by: Simon Davies <simongdavies@users.noreply.github.com>
Signed-off-by: Simon Davies <simongdavies@users.noreply.github.com>
Signed-off-by: Simon Davies <simongdavies@users.noreply.github.com>
Signed-off-by: Simon Davies <simongdavies@users.noreply.github.com>
Signed-off-by: Simon Davies <simongdavies@users.noreply.github.com>
37040bc
to
6b8de9c
Compare
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.
This PR adds support for Azure Linux 3.
Because there are breaking changes between version 2 and verrion 3 of the
mshv-bindings
andmshv-ioctls
and version 2 is required for Azure Linux version 2 and version 3 is required for Azure Linux version 3, this change also includes feature flags to allow the user to specify which version of mshv to target.This defaults to mshv2 (Azure Linux 2), to target Azure Linux 3 enable the
mshv3
feature, there is no need to disable the mshv2 feature in this case.CI is also updated so tests, examples and benchmarks are all run on Azure Linux 3 runners with the
mshv3
feature enabled.Fixes #167