From 64ea01e445507c0009ca91eb566a7262d1626d31 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Thu, 10 Mar 2022 18:15:54 +0100 Subject: [PATCH] [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. --- .github/scripts/build_projects.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/scripts/build_projects.py b/.github/scripts/build_projects.py index 0cb79fa..6fd5851 100755 --- a/.github/scripts/build_projects.py +++ b/.github/scripts/build_projects.py @@ -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",)