Skip to content

Commit

Permalink
Remove requirement for x86_64 to run android test.
Browse files Browse the repository at this point in the history
  • Loading branch information
skottmckay committed Jun 13, 2024
1 parent 9bd353b commit 58f5baf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 58f5baf

Please sign in to comment.