forked from koral--/android-gif-drawable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
27 lines (22 loc) · 871 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
env:
global:
- NDK_VERSION=r11
sudo: false
language:
- android
jdk:
- oraclejdk8
before_install:
- echo y|android update sdk --all --no-ui --force --filter tools
- echo y|android update sdk --all --no-ui --force --filter platform-tools
- echo y|android update sdk --all --no-ui --force --filter build-tools-23.0.2
- echo y|android update sdk --all --no-ui --force --filter android-23
- echo y|android update sdk --all --no-ui --force --filter extra-android-m2repository
- wget http://dl.google.com/android/repository/android-ndk-$NDK_VERSION-linux-x86_64.zip
- unzip android-ndk-$NDK_VERSION-linux-x86_64.zip |grep -v inflating
- export ANDROID_NDK_HOME=`pwd`/android-ndk-$NDK_VERSION
- export PATH=${PATH}:${ANDROID_NDK_HOME}
script:
- ./gradlew build jacocoTestReport --info
after_success:
- bash <(curl -s https://codecov.io/bash)