@@ -20,10 +20,6 @@ before_install:
2020 # Get version from git tag
2121 - export TRAVIS_TAG=$(git describe --abbrev=0 --tags)
2222
23- # Download Google Drive Downloader
24- - curl -OL https://gist.githubusercontent.com/Manromen/4e4cf28ddf5bf2e4ee5cc2dfe4055952/raw/77d59731d3523f51d312254c6fd36427b3ea49b5/googleDriveDownload.sh
25- - chmod +x googleDriveDownload.sh;
26-
2723 # Download Android NDK from Google
2824 - curl -OL "https://dl.google.com/android/repository/android-ndk-${TRAVIS_ANDROID_NDK_VERSION}-linux-x86_64.zip"
2925 - unzip -q -o android-ndk-${TRAVIS_ANDROID_NDK_VERSION}-linux-x86_64.zip
@@ -32,6 +28,51 @@ before_install:
3228matrix :
3329 include :
3430
31+ # ## Boost 1.68.0 - NDK r18b ###
32+ # arm64-v8a
33+ - os : linux
34+ env :
35+ - TRAVIS_ANDROID_NDK_VERSION=r18b
36+ - TRAVIS_BOOST_VERSION=1.68.0
37+ - TRAVIS_ANDROID_ARCH=arm64-v8a
38+ addons :
39+ apt :
40+ sources : ['ubuntu-toolchain-r-test']
41+ packages : ['g++-5' ]
42+
43+ # armeabi-v7a
44+ - os : linux
45+ env :
46+ - TRAVIS_ANDROID_NDK_VERSION=r18b
47+ - TRAVIS_BOOST_VERSION=1.68.0
48+ - TRAVIS_ANDROID_ARCH=armeabi-v7a
49+ addons :
50+ apt :
51+ sources : ['ubuntu-toolchain-r-test']
52+ packages : ['g++-5' ]
53+
54+ # x86
55+ - os : linux
56+ env :
57+ - TRAVIS_ANDROID_NDK_VERSION=r18b
58+ - TRAVIS_BOOST_VERSION=1.68.0
59+ - TRAVIS_ANDROID_ARCH=x86
60+ addons :
61+ apt :
62+ sources : ['ubuntu-toolchain-r-test']
63+ packages : ['g++-5' ]
64+
65+ # x86_64
66+ - os : linux
67+ env :
68+ - TRAVIS_ANDROID_NDK_VERSION=r18b
69+ - TRAVIS_BOOST_VERSION=1.68.0
70+ - TRAVIS_ANDROID_ARCH=x86_64
71+ addons :
72+ apt :
73+ sources : ['ubuntu-toolchain-r-test']
74+ packages : ['g++-5' ]
75+
3576 # ## Boost 1.68.0 - NDK r18 ###
3677 # arm64-v8a
3778 - os : linux
0 commit comments