-
Notifications
You must be signed in to change notification settings - Fork 175
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
DPDK: Add 32bit test #3489
base: main
Are you sure you want to change the base?
DPDK: Add 32bit test #3489
Conversation
Allowing extension of the class for the 32bit build
Allow building rdma-core and dpdk as 32bit applications before test. Add the 32bit test. This is a beefy commit because we must extend the Installer class to support 32bit builds. This means adding invalid arch checks, adding arch checks to the DependencyInstaller, adding changes to PKG_CONFIG_PATH and allowing updating environment variables everywhere. The result is that we can install DPDK and RDMA core and run their 32bit versions to test basic send/receive stuff.
@squirrelsc I'm getting a ton of mypy errors which are due to the old version we're using :\ |
We don't have a plan to upgrade mypy yet, it's not a trivial and safe work. |
Definitely not trivial, tons of errors specifically in the aws and azure sut_orchestrator code 😵💫 |
Add a test which compiles DPDK as a 32bit application before run. Implements basic build and send_receive tests.
Required a little fiddling with meson and pkgconfig to ensure the 32bit libraries are used when needed.