From 8b3251a04711148c36a013d04b4aa0cc47c485fb Mon Sep 17 00:00:00 2001 From: Pascal Hartig Date: Mon, 13 Aug 2018 06:23:54 -0700 Subject: [PATCH] Make Travis output less verbose Summary: The results on the website are completely useless right now due to wget and unzip spam. Reviewed By: danielbuechele Differential Revision: D9294858 fbshipit-source-id: 921979e19ff744a58da170d3dd15663fa2475275 --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 8e79fbc83..eadbdb2d3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -80,11 +80,11 @@ matrix: before_install: - yes | sdkmanager "platforms;android-27" - echo "y" | sdkmanager "cmake;3.6.4111459" - - wget https://dl.google.com/android/repository/android-ndk-r17b-linux-x86_64.zip + - wget -q https://dl.google.com/android/repository/android-ndk-r17b-linux-x86_64.zip - mkdir -p temp-android-ndk - mv ./android-ndk-r17b-linux-x86_64.zip temp-android-ndk - cd temp-android-ndk - - unzip android-ndk-r17b-linux-x86_64.zip + - unzip -q android-ndk-r17b-linux-x86_64.zip - export ANDROID_NDK_HOME=`pwd`/android-ndk-r17b - export PATH=${PATH}:${ANDROID_NDK_HOME} - cd ../