diff options
author | ligi <ligi@ligi.de> | 2018-05-10 18:33:13 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2018-05-10 18:33:13 +0800 |
commit | fcc18f4c80a5a7e6cc39315fb1eeb2222c811701 (patch) | |
tree | 90dca48d40ae24df5d2bfea734e3b6e37519a75c /.travis.yml | |
parent | 53a18d2e2734d078200ec607055ae551245ae74b (diff) | |
download | dexon-fcc18f4c80a5a7e6cc39315fb1eeb2222c811701.tar.gz dexon-fcc18f4c80a5a7e6cc39315fb1eeb2222c811701.tar.zst dexon-fcc18f4c80a5a7e6cc39315fb1eeb2222c811701.zip |
travis: use Android NDK 16b (#16562)
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml index 194ca6396..ce6500c46 100644 --- a/.travis.yml +++ b/.travis.yml @@ -152,10 +152,10 @@ matrix: - export GOPATH=$HOME/go script: # Build the Android archive and upload it to Maven Central and Azure - - curl https://dl.google.com/android/repository/android-ndk-r15c-linux-x86_64.zip -o android-ndk-r15c.zip - - unzip -q android-ndk-r15c.zip && rm android-ndk-r15c.zip - - mv android-ndk-r15c $HOME - - export ANDROID_NDK=$HOME/android-ndk-r15c + - curl https://dl.google.com/android/repository/android-ndk-r16b-linux-x86_64.zip -o android-ndk-r16b.zip + - unzip -q android-ndk-r16b.zip && rm android-ndk-r16b.zip + - mv android-ndk-r16b $HOME + - export ANDROID_NDK=$HOME/android-ndk-r16b - mkdir -p $GOPATH/src/github.com/ethereum - ln -s `pwd` $GOPATH/src/github.com/ethereum |