Problem: Travis ci logs are too long

Solution: Don't print tar extraction verbosely
This commit is contained in:
Joe McIlvain
2014-11-02 17:39:01 -08:00
parent eae679718e
commit aeec276b85
2 changed files with 2 additions and 2 deletions

View File

@@ -27,7 +27,7 @@ wget "https://download.libsodium.org/libsodium/releases/LATEST.tar.gz" \
-O "${cache}/libsodium.tar.gz"
(cd "${cache}" && mkdir libsodium \
&& tar -C libsodium -xvf libsodium.tar.gz --strip=1 \
&& tar -C libsodium -xf libsodium.tar.gz --strip=1 \
&& cd "libsodium" && ./autogen.sh \
&& ./configure "${ANDROID_BUILD_OPTS[@]}" --disable-soname-versions \
&& make \

View File

@@ -2,7 +2,7 @@
(cd '/tmp' \
&& wget http://dl.google.com/android/ndk/android-ndk-r9-linux-x86_64.tar.bz2 \
&& tar -xvf android-ndk-r9-linux-x86_64.tar.bz2 \
&& tar -xf android-ndk-r9-linux-x86_64.tar.bz2 \
&& mv android-ndk-r9 android-ndk)
export ANDROID_NDK_ROOT="/tmp/android-ndk"