Merge pull request #220 from kiwix/travis_no_dep_archive_android

[TRAVIS] Do not make a deps archive when PLATFORM is android.
This commit is contained in:
Matthieu Gautier 2018-07-16 19:27:49 +02:00 committed by GitHub
commit a17cdeba49
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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)