From 03c2c2608976387532560b60cb5976363c3378e2 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Tue, 19 Feb 2019 14:21:12 +0100 Subject: [PATCH] Add LOGS dir to the dependencies archives. This will help to debug. --- travis/compile_all.py | 1 + 1 file changed, 1 insertion(+) diff --git a/travis/compile_all.py b/travis/compile_all.py index f021f3a..ca5ec22 100755 --- a/travis/compile_all.py +++ b/travis/compile_all.py @@ -196,6 +196,7 @@ def make_deps_archive(target, full=False): TRAVIS_OS_NAME, PLATFORM, target) print_message("Create archive {}.", archive_name) files_to_archive = [INSTALL_DIR] + files_to_archive += HOME.glob('BUILD_*/LOGS') if PLATFORM == 'native_mixed': files_to_archive += [HOME/'BUILD_native_static'/'INSTALL'] if PLATFORM.startswith('android'):