diff options
author | Péter Szilágyi <peterke@gmail.com> | 2017-11-09 20:32:05 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2017-11-09 20:32:05 +0800 |
commit | 09b347fec92d2a73122dc3efc5aeea2a2724d9ca (patch) | |
tree | 90a39d711901a5aa4bfbaf237335124464d6da74 | |
parent | d7f2462e8f242887846cbff760790fa42c28de65 (diff) | |
download | dexon-09b347fec92d2a73122dc3efc5aeea2a2724d9ca.tar.gz dexon-09b347fec92d2a73122dc3efc5aeea2a2724d9ca.tar.zst dexon-09b347fec92d2a73122dc3efc5aeea2a2724d9ca.zip |
travis: bump Android NDK version and Android Go builder
-rw-r--r-- | .travis.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml index fe3b04cd2..1bd69da34 100644 --- a/.travis.yml +++ b/.travis.yml @@ -147,16 +147,16 @@ matrix: - azure-android - maven-android before_install: - - curl https://storage.googleapis.com/golang/go1.9.linux-amd64.tar.gz | tar -xz + - curl https://storage.googleapis.com/golang/go1.9.2.linux-amd64.tar.gz | tar -xz - export PATH=`pwd`/go/bin:$PATH - export GOROOT=`pwd`/go - 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-r14b-linux-x86_64.zip -o android-ndk-r14b.zip - - unzip -q android-ndk-r14b.zip && rm android-ndk-r14b.zip - - mv android-ndk-r14b $HOME - - export ANDROID_NDK=$HOME/android-ndk-r14b + - 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 - mkdir -p $GOPATH/src/github.com/ethereum - ln -s `pwd` $GOPATH/src/github.com/ethereum |