Skip to content

Commit

Permalink
Add NDK r18b
Browse files Browse the repository at this point in the history
  • Loading branch information
RGPaul committed Dec 11, 2018
1 parent d83ab1a commit ad5c9b1
Showing 1 changed file with 45 additions and 4 deletions.
49 changes: 45 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,6 @@ before_install:
# Get version from git tag
- export TRAVIS_TAG=$(git describe --abbrev=0 --tags)

# Download Google Drive Downloader
- curl -OL https://gist.githubusercontent.com/Manromen/4e4cf28ddf5bf2e4ee5cc2dfe4055952/raw/77d59731d3523f51d312254c6fd36427b3ea49b5/googleDriveDownload.sh
- chmod +x googleDriveDownload.sh;

# Download Android NDK from Google
- curl -OL "https://dl.google.com/android/repository/android-ndk-${TRAVIS_ANDROID_NDK_VERSION}-linux-x86_64.zip"
- unzip -q -o android-ndk-${TRAVIS_ANDROID_NDK_VERSION}-linux-x86_64.zip
Expand All @@ -32,6 +28,51 @@ before_install:
matrix:
include:

### Boost 1.68.0 - NDK r18b ###
# arm64-v8a
- os: linux
env:
- TRAVIS_ANDROID_NDK_VERSION=r18b
- TRAVIS_BOOST_VERSION=1.68.0
- TRAVIS_ANDROID_ARCH=arm64-v8a
addons:
apt:
sources: ['ubuntu-toolchain-r-test']
packages: ['g++-5' ]

# armeabi-v7a
- os: linux
env:
- TRAVIS_ANDROID_NDK_VERSION=r18b
- TRAVIS_BOOST_VERSION=1.68.0
- TRAVIS_ANDROID_ARCH=armeabi-v7a
addons:
apt:
sources: ['ubuntu-toolchain-r-test']
packages: ['g++-5' ]

# x86
- os: linux
env:
- TRAVIS_ANDROID_NDK_VERSION=r18b
- TRAVIS_BOOST_VERSION=1.68.0
- TRAVIS_ANDROID_ARCH=x86
addons:
apt:
sources: ['ubuntu-toolchain-r-test']
packages: ['g++-5' ]

# x86_64
- os: linux
env:
- TRAVIS_ANDROID_NDK_VERSION=r18b
- TRAVIS_BOOST_VERSION=1.68.0
- TRAVIS_ANDROID_ARCH=x86_64
addons:
apt:
sources: ['ubuntu-toolchain-r-test']
packages: ['g++-5' ]

### Boost 1.68.0 - NDK r18 ###
# arm64-v8a
- os: linux
Expand Down

0 comments on commit ad5c9b1

Please sign in to comment.