forked from google/zooshi
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
40 lines (34 loc) · 979 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
git:
depth: 3
submodules: true
language: android
android:
components:
- tools
- build-tools-23.0.1
- android-23
- extra-google-m2repository
- extra-android-m2repository
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-5
- g++-5
before_install:
- export CXX="g++-5" CC="gcc-5"
- sudo apt-get update -q
- sudo apt-get install webp python imagemagick libglapi-mesa libgl1-mesa-dev
- echo `python --version`
- export ANDROID_SDK_ROOT=/usr/local/android-sdk
- wget https://dl.google.com/android/repository/android-ndk-r14b-linux-x86_64.zip
- unzip -qq android-ndk-r14b-linux-x86_64.zip -d $ANDROID_SDK_ROOT/ndk-bundle
- export NDK_ROOT=$ANDROID_SDK_ROOT/ndk-bundle/android-ndk-r14b
- echo -e "sdk.dir=$ANDROID_SDK_ROOT\nndk.dir=$NDK_ROOT\n" > local.properties
- echo `convert -list configure`
script:
- ./gradlew build
- ./gradlew build
notifications:
email: false