-
-
Notifications
You must be signed in to change notification settings - Fork 761
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
[CI] Test ARM64 build with GithubActions #1166
base: main
Are you sure you want to change the base?
Conversation
Signed-off-by: hugsy <[email protected]>
Signed-off-by: hugsy <[email protected]>
1 similar comment
Signed-off-by: hugsy <[email protected]>
Signed-off-by: hugsy <[email protected]>
1 similar comment
@@ -292,6 +294,7 @@ def setUp(self) -> None: | |||
self.expected_tcache_bin_size = 0x20 if ARCH == "i686" or is_64b() else 0x18 | |||
return super().setUp() | |||
|
|||
@pytest.mark.skipif(ARCH not in ("i686", "x86_64"), reason=f"Skipped for {ARCH}") |
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.
Is this still arch specific? Do you have an arm machine to test on? would be nice if it at least passed locally.
I am setting up a raspberry pi in the next few days for something related, I should be able to test if you can wait.
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.
No problem, it can wait but I'm happy to re-test on my devices too
Signed-off-by: hugsy <[email protected]>
Description
Ubuntu ARM runners are now available. Add them to the test suite.
Note: the following tests are marked as skipped for
aarch64
since they failed on CI (but work locally). Will revisit latertest_func_parse_maps_remote_qemu
test_func_parse_maps_realpath
test_cmd_heap_bins_tcache
test_cmd_heap_bins_tcache_all
test_can_establish_connection_to_gdbserver_again_after_disconnect
Checklist