-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
44 lines (36 loc) · 882 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
43
language: android
sudo: false
jdk: oraclejdk7
env:
matrix:
- ANDROID_TARGET=android-18 ANDROID_ABI=armeabi-v7a
global:
# wait up to 10 minutes for adb to connect to emulator
- ADB_INSTALL_TIMEOUT=10
android:
components:
- platform-tools
- tools
- build-tools-23.0.2
- android-23
# Additional components
- extra-google-m2repository
- extra-android-m2repository
- extra-android-support
addons:
apt-packages:
- pandoc
cache:
directories:
- $HOME/.gradle/caches/2.8
- $HOME/.gradle/caches/jars-1
- $HOME/.gradle/daemon
- $HOME/.gradle/native
- $HOME/.gradle/wrapper
script:
- ./gradlew test --continue
- ./gradlew jacocoTestReport
after_success:
- bash <(curl -s https://codecov.io/bash)
after_failure:
- pandoc app/build/reports/tests/debug/index.html -t plain | sed -n '/^Failed tests/,/default-package/p'