Build zim-tools and kiwix-tools and macosOs_arm64.
This commit is contained in:
parent
ab14ce957b
commit
02e2598056
|
@ -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"):
|
||||
|
|
|
@ -177,6 +177,7 @@ jobs:
|
|||
- native_dyn
|
||||
- native_static
|
||||
- native_mixed
|
||||
- macOS_arm64_static
|
||||
- macOS_arm64_mixed
|
||||
runs-on: macos-12
|
||||
env:
|
||||
|
|
Loading…
Reference in New Issue