mirror of
https://github.com/kiwix/kiwix-build.git
synced 2025-04-24 22:57:07 -04:00
Correctly set the extra postfix for android kiwix-lib.
This commit is contained in:
parent
bbb81438b6
commit
1dde278ad6
1 changed files with 6 additions and 0 deletions
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":
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue