-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
42 lines (42 loc) · 922 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
41
42
language: android
jdk: oraclejdk8
env:
global:
- ANDROID_TARGET=android-21
- ANDROID_ABI=armeabi-v7a
android:
components:
- platform-tools
- tools
- build-tools-23.0.3
- android-23
- extra-google-google_play_services
- extra-android-m2repository
- extra-android-support
licenses:
- android-sdk-preview-license-52d11cd2
- android-sdk-license-c81a61d9
- android-sdk-license-.+
- google-gdk-license-.+
notifications:
email: false
slack: cinebuff:8XllnTACl1gXpIUfPGMLr4qL
branches:
only:
- master
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
before_install:
# environment info
- ./gradlew -v
- uname -a
- chmod +x gradlew
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
script:
# — ./gradlew build jacocoTestReport
- ./gradlew check
after_success:
- bash <(curl -s https://codecov.io/bash)