From d74cd1d50a666bd2e81ff3207e2de640ac8b33c9 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Wed, 13 Jun 2018 14:35:02 +0200 Subject: [PATCH] Do not try to compile kiwix-desktop on native_static. QtWebEngine is not compatible with static compilation so we should not try to compile kiwix-desktop on native_static. --- travis/compile_all.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/travis/compile_all.py b/travis/compile_all.py index f12db82..91c5a28 100755 --- a/travis/compile_all.py +++ b/travis/compile_all.py @@ -259,7 +259,7 @@ elif PLATFORM.startswith('native_'): if TRAVIS_OS_NAME == "osx": TARGETS = ('libzim', 'zimwriterfs', 'zim-tools', 'kiwix-lib') else: - if make_release: + if make_release or PLATFORM == 'native_static': TARGETS = ('libzim', 'zimwriterfs', 'zim-tools', 'kiwix-lib', 'kiwix-tools') else: TARGETS = ('libzim', 'kiwix-lib', 'kiwix-desktop', 'zimwriterfs', 'zim-tools', 'kiwix-tools')