mirror of
https://github.com/kiwix/kiwix-build.git
synced 2025-06-26 10:11:27 +00:00
Correctly build release of kiwix-lib on android.
The name of the target is `kiwix-lib-app` on android but the key in the version directory is `kiwix-lib`.
This commit is contained in:
6
.github/scripts/build_release_nightly.py
vendored
6
.github/scripts/build_release_nightly.py
vendored
@ -53,7 +53,11 @@ else:
|
||||
|
||||
# Filter what to build if we are doing a release.
|
||||
if RELEASE:
|
||||
TARGETS = tuple(filter(lambda t: release_versions.get(t) is not None, TARGETS))
|
||||
def release_filter(project):
|
||||
if project == "kiwix-lib-app":
|
||||
project = "kiwix-lib"
|
||||
return release_versions.get(project) is not None
|
||||
TARGETS = tuple(filter(release_filter, TARGETS))
|
||||
|
||||
for target in TARGETS:
|
||||
run_kiwix_build(target, platform=PLATFORM_TARGET, make_release=RELEASE)
|
||||
|
Reference in New Issue
Block a user