From 58f5baf4f3b720ba8b3a28c60d25033cc64d7fd0 Mon Sep 17 00:00:00 2001 From: Scott McKay Date: Thu, 13 Jun 2024 15:35:16 +1000 Subject: [PATCH] Remove requirement for x86_64 to run android test. --- build.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.py b/build.py index 10eab58b5..c49752de9 100644 --- a/build.py +++ b/build.py @@ -340,9 +340,9 @@ def _get_csharp_properties(args: argparse.Namespace): def _run_android_tests(args, ): # only run the tests on the emulator for x86_64 currently. # TODO: may also be possible to run on a Mac with an arm64 chip - if args.android_abi != "x86_64": - log.info("Skipping Android tests as they are only supported on x86_64 currently.") - return + # if args.android_abi != "x86_64": + # log.info("Skipping Android tests as they are only supported on x86_64 currently.") + # return if not args.build_java: # currently we only have an Android test app that we run on the emulator to test the Java bindings.