[CI] Do not build zim-tools on macOS cross-compilation target.

We still build zim-tools on macOs with native build.
This commit is contained in:
Matthieu Gautier 2022-03-10 16:57:56 +01:00
parent 8b9b74d577
commit 6505e82c37
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ from common import (
if PLATFORM_TARGET.startswith("android_"):
TARGETS = ("libkiwix",)
elif PLATFORM_TARGET.startswith("iOS"):
elif PLATFORM_TARGET.startswith("iOS") or PLATFORM_TARGET.startswith("macOS"):
TARGETS = ("libzim", "libkiwix")
elif PLATFORM_TARGET.startswith("native_"):
if OS_NAME == "osx":