From f51204d4249ef02d8822467b9323b2d5e99fdee7 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Sat, 4 Aug 2018 09:06:38 +0200 Subject: [PATCH] [Travis] Also build kiwix-desktop when building for release. --- travis/compile_all.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/travis/compile_all.py b/travis/compile_all.py index 2250fa1..71df590 100755 --- a/travis/compile_all.py +++ b/travis/compile_all.py @@ -300,8 +300,7 @@ elif PLATFORM.startswith('native_'): TARGETS = ('libzim', 'zimwriterfs', 'zim-tools', 'kiwix-lib') else: if PLATFORM == 'native_dyn' and KIWIX_DESKTOP_ONLY: - if not make_release: - TARGETS = ('kiwix-desktop', ) + TARGETS = ('kiwix-desktop', ) else: TARGETS = ('libzim', 'zimwriterfs', 'zim-tools', 'kiwix-lib', 'kiwix-tools') else: @@ -330,7 +329,7 @@ for target in TARGETS: # We have build everything. Now create archives for public deployement. if make_release and PLATFORM == 'native_dyn': for target in TARGETS: - if target in ('kiwix-lib', 'kiwix-tools'): + if target in ('kiwix-lib', 'kiwix-tools', 'kiwix-desktop'): out_dir = DIST_KIWIX_ARCHIVES_DIR else: out_dir = DIST_ZIM_ARCHIVES_DIR