From 25af2cfa6cc40c36adc1cf83fc317cb4957507d6 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Mon, 16 Jul 2018 18:31:50 +0200 Subject: [PATCH] =?UTF-8?q?[TRAVIS]=20Do=20not=20make=20a=20deps=20archive?= =?UTF-8?q?=20when=20PLATFORM=C2=A0is=20android.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We never use the android platform in other project. We always an arch specific android platform (android_arm). So, do not try to do any dependencies archives there. Especially if travis kill the job because it takes too long to create the archive. --- 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 f195e94..f79c3ef 100755 --- a/travis/compile_all.py +++ b/travis/compile_all.py @@ -308,7 +308,7 @@ else: TARGETS = ('libzim', 'zim-tools', 'kiwix-lib', 'kiwix-tools') for target in TARGETS: - if environ['TRAVIS_EVENT_TYPE'] == 'cron': + if environ['TRAVIS_EVENT_TYPE'] == 'cron' and PLATFORM != 'android': run_kiwix_build(target, platform=PLATFORM, build_deps_only=True)