-
Notifications
You must be signed in to change notification settings - Fork 378
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
vmtests: deduplicating code using LVH library for arm64 support #2333
Merged
Conversation
This file contains 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
✅ Deploy Preview for tetragon ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
mtardy
force-pushed
the
pr/mtardy/vmtests-lvh
branch
from
April 15, 2024 10:40
340954b
to
cc43ac5
Compare
mtardy
force-pushed
the
pr/mtardy/vmtests-lvh
branch
2 times, most recently
from
April 15, 2024 13:38
f32029d
to
b42b9b2
Compare
mtardy
changed the title
do not merge: deduplicating code, vmtests using LVH library
draft: deduplicating code, vmtests using LVH library
Apr 15, 2024
mtardy
force-pushed
the
pr/mtardy/vmtests-lvh
branch
2 times, most recently
from
April 16, 2024 07:53
90eb6d0
to
36c8c7d
Compare
mtardy
force-pushed
the
pr/mtardy/vmtests-lvh
branch
7 times, most recently
from
April 16, 2024 12:09
a261658
to
4bf7274
Compare
mtardy
force-pushed
the
pr/mtardy/vmtests-lvh
branch
from
April 18, 2024 11:36
4bf7274
to
248fe24
Compare
mtardy
changed the title
draft: deduplicating code, vmtests using LVH library
vmtests: deduplicating code using LVH library for arm64 support
Apr 18, 2024
kkourt
added
the
needs-rebase
This PR needs to be rebased because it has merge conflicts.
label
Apr 25, 2024
I wouldn't mind a review @kkourt so that I can rebase afterward and make sure I don't rebase twice :) |
kkourt
approved these changes
May 16, 2024
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.
LGTM, thanks :)
Deduplicate some codes shared between vmtests and LVH: - inject LVH runner.RunConf into vmtests RunConf and reuse existing LVH configuration fields. - use LVH runner.BuildQemuArgs along with custom vmtests logic. - removes the support for HVF, we would need to put it in LVH to get this again but I don't think this is used nowadays. This is mainly so that we benefit from the arm64 support as LVH was recently updated to support it. Signed-off-by: Mahe Tardy <[email protected]>
Previously the fetch-data was defaulting to root-images:latest that is more than a year old now (!) but most importantly, not multi-arch as this new tag. Signed-off-by: Mahe Tardy <[email protected]>
mtardy
force-pushed
the
pr/mtardy/vmtests-lvh
branch
from
May 30, 2024 14:42
248fe24
to
44240da
Compare
mtardy
removed
the
needs-rebase
This PR needs to be rebased because it has merge conflicts.
label
May 30, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
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.
Deduplicate some codes shared between vmtests and LVH:
This is mainly so that we benefit from the arm64 support as LVH was recently updated to support it.