From 563bd281976809ababb07fd4609314397a859e87 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Wed, 4 Sep 2019 11:15:08 +0200 Subject: [PATCH] Set KIWIXLIB_BUILDVERSION to generate the pom with the correct version. --- travis/compile_all.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/travis/compile_all.py b/travis/compile_all.py index a629a28..d637598 100755 --- a/travis/compile_all.py +++ b/travis/compile_all.py @@ -428,6 +428,11 @@ for target in TARGETS: build_deps_only=True) make_deps_archive(target=target) + if target == 'kiwix-lib-app': + extra_postfix = release_versions.get('kiwix-lib') + if extra_postfix: + env['KIWIXLIB_BUILDVERSION'] = extra_postfix + run_kiwix_build(target, platform=PLATFORM, make_release=make_release)