From 51ff5e58bb6421a740cb89873d17bbc662ec8b5b Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Thu, 9 Jun 2022 10:31:09 +0200 Subject: [PATCH] Be able to make the release of libkiwix on android. --- .github/scripts/common.py | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/scripts/common.py b/.github/scripts/common.py index 2c2784c..c38c162 100644 --- a/.github/scripts/common.py +++ b/.github/scripts/common.py @@ -46,6 +46,10 @@ PLATFORM_TO_RELEASE = { "win32_static": "win-i686", "armhf_static": "{os}-armhf".format(os=RELEASE_OS_NAME), "i586_static": "{os}-i586".format(os=RELEASE_OS_NAME), + "android_arm": "android-arm", + "android_arm64": "android-arm64", + "android_x86": "android-x86", + "android_x86_64": "android-x86_64", } FLATPAK_HTTP_GIT_REMOTE = "https://github.com/flathub/org.kiwix.desktop.git" @@ -93,6 +97,13 @@ EXPORT_FILES = { "include/zim/**/*.h", ), ), + "libkiwix": ( + INSTALL_DIR, + ( + "lib/libkiwix.so", + "include/kiwix/**/*.h" + ), + ), } DATE = date.today().isoformat()