Build zim-tools and kiwix-tools and macosOs_arm64.

This commit is contained in:
Matthieu Gautier 2023-04-27 19:02:52 +02:00
parent ab14ce957b
commit 02e2598056
2 changed files with 7 additions and 2 deletions

View File

@ -22,9 +22,13 @@ def select_build_target():
if OS_NAME == "bionic" and PLATFORM_TARGET.endswith("_mixed"):
return ("libzim", )
elif (PLATFORM_TARGET.startswith("android_")
or PLATFORM_TARGET.startswith("iOS")
or PLATFORM_TARGET.startswith("macOS")):
or PLATFORM_TARGET.startswith("iOS")):
return ("libzim", "libkiwix")
elif PLATFORM_TARGET.startswith("macOS"):
if PLATFORM_TARGET.endswith("_mixed"):
return ("libzim", "libkiwix")
else:
return ("zim-tools", "kiwix-tools")
elif PLATFORM_TARGET.startswith("native_"):
if OS_NAME == "osx":
if PLATFORM_TARGET.endswith("_mixed"):

View File

@ -177,6 +177,7 @@ jobs:
- native_dyn
- native_static
- native_mixed
- macOS_arm64_static
- macOS_arm64_mixed
runs-on: macos-12
env: