diff options
author | ligi <ligi@ligi.de> | 2018-06-20 16:28:10 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2018-06-20 16:28:10 +0800 |
commit | c971ab617d57f614c1d84ad44efdf662cee00758 (patch) | |
tree | 19972ac124d9513ffb7c97d3f116c4e0916621da /.travis.yml | |
parent | f1986f86f2229ea5ff587c65c9229a65f40bf591 (diff) | |
download | dexon-c971ab617d57f614c1d84ad44efdf662cee00758.tar.gz dexon-c971ab617d57f614c1d84ad44efdf662cee00758.tar.zst dexon-c971ab617d57f614c1d84ad44efdf662cee00758.zip |
travis: use NDK 17b for Android archives (#17029)
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 bf2521560..afa9ab503 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-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 + - curl https://dl.google.com/android/repository/android-ndk-r17b-linux-x86_64.zip -o android-ndk-r17b.zip + - unzip -q android-ndk-r17b.zip && rm android-ndk-r17b.zip + - mv android-ndk-r17b $HOME + - export ANDROID_NDK=$HOME/android-ndk-r17b - mkdir -p $GOPATH/src/github.com/ethereum - ln -s `pwd` $GOPATH/src/github.com/ethereum |