diff options
| author | Bob Ellison <bob@lunarg.com> | 2020-08-27 18:10:42 -0600 |
|---|---|---|
| committer | Bob Ellison <45772930+lunarpapillo@users.noreply.github.com> | 2020-08-31 11:33:38 -0600 |
| commit | 25d277579d1e1844c02e6ce3f64950ef6b5b0d80 (patch) | |
| tree | 8e54e98131a994fe26a5fb34ff6c747eb839f3aa | |
| parent | 1b0bbd1550ed4856890a4436245a523d8c0c5dd8 (diff) | |
| download | usermoji-25d277579d1e1844c02e6ce3f64950ef6b5b0d80.tar.xz | |
android: NDK 21d
Update the Travis configuration to use the most recently available
Android NDK, 21d (i.e. 21.3.6528147).
| -rw-r--r-- | .travis.yml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index 757b4f17..6770202e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -66,9 +66,10 @@ before_install: if [[ "$VULKAN_BUILD_TARGET" == "ANDROID" ]]; then # Install the Android NDK. export ARCH=`uname -m` - 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 ANDROID_NDK=r21d + wget http://dl.google.com/android/repository/android-ndk-${ANDROID_NDK}-linux-${ARCH}.zip + unzip -u -q android-ndk-${ANDROID_NDK}-linux-${ARCH}.zip + export ANDROID_NDK_HOME=`pwd`/android-ndk-${ANDROID_NDK} export JAVA_HOME="/usr/lib/jvm/java-8-oracle" export PATH="$ANDROID_NDK_HOME:$PATH" fi |
