-
Notifications
You must be signed in to change notification settings - Fork 8.2k
Exclude native_posix for samples which set EVENTFD #73432
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
Conversation
Due to kconfig dependencies, these samples set EVENTFD which depends on !NATIVE_APPLICATION, which results in a kconfig warning when it is forced to n, and therefore a twister build failure. As native_posix is a native_application, let's exclude it from the test to prevent this combination. Signed-off-by: Alberto Escolar Piedras <alberto.escolar.piedras@nordicsemi.no>
Due to kconfig dependencies, these samples set EVENTFD which depends on !NATIVE_APPLICATION, which results in a kconfig warning when it is forced to n, and therefore a twister build failure. As native_posix is a native_application, let's exclude it from the test to prevent this combination. Signed-off-by: Alberto Escolar Piedras <alberto.escolar.piedras@nordicsemi.no>
Due to kconfig dependencies, these samples set EVENTFD which depends on !NATIVE_APPLICATION, which results in a kconfig warning when it is forced to n, and therefore a twister build failure. As native_posix is a native_application, let's exclude it from the test to prevent this combination. Signed-off-by: Alberto Escolar Piedras <alberto.escolar.piedras@nordicsemi.no>
Due to kconfig dependencies, these samples set EVENTFD, POSIX_API, and others which depends on !NATIVE_APPLICATION, which results in kconfig warnings when they are forced to n, and therefore a twister build failure. As native_posix is a native_application, let's exclude it from the test to prevent this combination. Signed-off-by: Alberto Escolar Piedras <alberto.escolar.piedras@nordicsemi.no>
jukkar
left a comment
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.
As it seems that native_posix usability is going down slowly (at least for networking), is there a plan to deprecate it?
Yes, in 4.0 |
|
This looks like a duplicate of #73256 |
|
Closing in favour of #73256 |
Due to kconfig dependencies, these samples set EVENTFD (and some also POSIX_API, and other options) which
depends on !NATIVE_APPLICATION, which when building for native_posix results in kconfig warnings when they
are forced to n, and therefore a twister build failure.
As native_posix is a native_application, let's exclude it from the test to prevent this combination from happening in CI.
Fixes #73434