diff --git a/.github/scripts/build_projects.py b/.github/scripts/build_projects.py index 7a67a34..81b4990 100755 --- a/.github/scripts/build_projects.py +++ b/.github/scripts/build_projects.py @@ -31,7 +31,7 @@ elif PLATFORM_TARGET.startswith("native_"): else: TARGETS = ("zim-tools", "kiwix-tools") elif PLATFORM_TARGET in ("win32_static", "armhf_static", "armhf_dyn", "aarch64_static", "aarch64_dyn", "i586_static"): - TARGETS = ("kiwix-tools",) + TARGETS = ("zim-tools", "kiwix-tools") elif PLATFORM_TARGET == "flatpak": TARGETS = ("kiwix-desktop",) elif PLATFORM_TARGET in ("wasm", "armhf_mixed", "aarch64_mixed"): diff --git a/.github/scripts/build_release_nightly.py b/.github/scripts/build_release_nightly.py index f21cb5a..7cc0f5a 100755 --- a/.github/scripts/build_release_nightly.py +++ b/.github/scripts/build_release_nightly.py @@ -38,7 +38,7 @@ elif PLATFORM_TARGET.startswith("native_"): else: TARGETS = ("zim-tools", "kiwix-tools") elif PLATFORM_TARGET in ("win32_static", "armhf_static", "aarch64_static", "i586_static"): - TARGETS = ("kiwix-tools",) + TARGETS = ("zim-tools", "kiwix-tools",) elif PLATFORM_TARGET == "flatpak": TARGETS = ("kiwix-desktop",) elif PLATFORM_TARGET in ("wasm", "armhf_mixed", "aarch64_mixed"): diff --git a/.github/scripts/common.py b/.github/scripts/common.py index 1b302b1..f75493b 100644 --- a/.github/scripts/common.py +++ b/.github/scripts/common.py @@ -55,6 +55,7 @@ PLATFORM_TO_RELEASE = { "aarch64_static": "{os}-aarch64".format(os=RELEASE_OS_NAME), "aarch64_mixed": "{os}-aarch64".format(os=RELEASE_OS_NAME), "i586_static": "{os}-i586".format(os=RELEASE_OS_NAME), + "macOS_arm64_static": "{os}-arm64".format(os=RELEASE_OS_NAME), "macOS_arm64_mixed": "{os}-arm64".format(os=RELEASE_OS_NAME), "android_arm": "android-arm", "android_arm64": "android-arm64", diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fc6bf25..3550080 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -136,6 +136,7 @@ jobs: matrix: target: - native_dyn + - native_static - native_mixed - iOS_arm64 - iOS_x86_64 diff --git a/.github/workflows/releaseNigthly.yml b/.github/workflows/releaseNigthly.yml index 8586dee..f47d897 100644 --- a/.github/workflows/releaseNigthly.yml +++ b/.github/workflows/releaseNigthly.yml @@ -169,6 +169,7 @@ jobs: matrix: target: - native_dyn + - native_static - native_mixed - macOs_arm64_mixed runs-on: macos-12