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
This commit is contained in:
Pascal Hartig
2018-08-13 06:23:54 -07:00
committed by Facebook Github Bot
parent ed67ce527d
commit 8b3251a047

View File

@@ -80,11 +80,11 @@ matrix:
before_install: before_install:
- yes | sdkmanager "platforms;android-27" - yes | sdkmanager "platforms;android-27"
- echo "y" | sdkmanager "cmake;3.6.4111459" - 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 - mkdir -p temp-android-ndk
- mv ./android-ndk-r17b-linux-x86_64.zip temp-android-ndk - mv ./android-ndk-r17b-linux-x86_64.zip temp-android-ndk
- cd 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 ANDROID_NDK_HOME=`pwd`/android-ndk-r17b
- export PATH=${PATH}:${ANDROID_NDK_HOME} - export PATH=${PATH}:${ANDROID_NDK_HOME}
- cd ../ - cd ../