android: Roll back to NDK r15c
authorCody Northrop <cnorthrop@google.com>
Thu, 21 Dec 2017 16:31:53 +0000 (09:31 -0700)
committerTobin Ehlis <tobine@google.com>
Fri, 22 Dec 2017 23:09:45 +0000 (16:09 -0700)
Until we can sort out issues with NDK r16 preventing us from
completing 32-bit test runs.

.travis.yml

index 339f440..24bd225 100644 (file)
@@ -47,9 +47,9 @@ before_install:
   - |
     if [[ "$VULKAN_BUILD_TARGET" == "ANDROID" ]]; then
       export ARCH=`uname -m`
-      wget http://dl.google.com/android/repository/android-ndk-r16b-linux-${ARCH}.zip
-      unzip -u -q android-ndk-r16b-linux-${ARCH}.zip
-      export ANDROID_NDK_HOME=`pwd`/android-ndk-r16b
+      wget http://dl.google.com/android/repository/android-ndk-r15c-linux-${ARCH}.zip
+      unzip -u -q android-ndk-r15c-linux-${ARCH}.zip
+      export ANDROID_NDK_HOME=`pwd`/android-ndk-r15c
       export JAVA_HOME="/usr/lib/jvm/java-8-oracle"
       export PATH="$ANDROID_NDK_HOME:$PATH"
     fi