mirror of
https://github.com/kiwix/kiwix-build.git
synced 2025-06-26 10:11:27 +00:00
Correctly set the extra postfix for android kiwix-lib.
This commit is contained in:
6
.github/scripts/build_release_nightly.py
vendored
6
.github/scripts/build_release_nightly.py
vendored
@ -59,6 +59,12 @@ if RELEASE:
|
||||
return release_versions.get(project) is not None
|
||||
TARGETS = tuple(filter(release_filter, TARGETS))
|
||||
|
||||
if RELEASE and PLATFORM_TARGET == "android":
|
||||
# Kiwix-lib need to know the extrapostfix version to correctly generate the pom.xml file.
|
||||
extra_postfix = release_versions.get('kiwix-lib')
|
||||
if extra_postfix:
|
||||
os.environ['KIWIXLIB_BUILDVERSION'] = str(extra_postfix)
|
||||
|
||||
for target in TARGETS:
|
||||
run_kiwix_build(target, platform=PLATFORM_TARGET, make_release=RELEASE)
|
||||
if target == "kiwix-desktop":
|
||||
|
Reference in New Issue
Block a user