[CI] Do not build zim-tools on armhf

zim-tools depends of docopt which need a recent enough version of gcc (4.9)
But we are using gcc 4.8.3 to cross compile on armhf.
This commit is contained in:
Matthieu Gautier 2022-03-10 18:15:54 +01:00
parent 6505e82c37
commit 64ea01e445
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ elif PLATFORM_TARGET.startswith("native_"):
TARGETS = ("libzim",)
else:
TARGETS = ("zim-tools", "libkiwix", "kiwix-tools")
elif PLATFORM_TARGET in ("win32_static", "armhf_static", "i586_static"):
elif PLATFORM_TARGET in ("win32_static", "armhf_static", "armhf_dyn", "i586_static"):
TARGETS = ("kiwix-tools",)
elif PLATFORM_TARGET == "flatpak":
TARGETS = ("kiwix-desktop",)