From f6c3083505017e8ee7e9f2413d2f15c0d20073c2 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Fri, 23 Feb 2018 14:50:48 +0100 Subject: [PATCH] Do not try to compile kiwix-android if we make a release. kiwix-android is following its own release process and tagging policy. Will should fix this in the future but trying to compile kiwix-android master branch may fail with tagged version of kiwix-lib. --- travis/compile_all.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/travis/compile_all.py b/travis/compile_all.py index f2e9266..a048a1d 100755 --- a/travis/compile_all.py +++ b/travis/compile_all.py @@ -96,7 +96,12 @@ if environ['TRAVIS_EVENT_TYPE'] != 'cron' and not make_release: sys.exit(0) if PLATFORM.startswith('android'): - TARGETS = ('libzim', 'kiwix-lib', 'kiwix-android') + if make_release: + # (For now ?) kiwix-android follow it own release process. + # Do not try to make a release of it + TARGETS = ('libzim', 'kiwix-lib') + else: + TARGETS = ('libzim', 'kiwix-lib', 'kiwix-android') elif PLATFORM.startswith('native_'): TARGETS = ('libzim', 'zimwriterfs', 'zim-tools', 'kiwix-lib', 'kiwix-tools') else: