-
-
Notifications
You must be signed in to change notification settings - Fork 268
Expand file tree
/
Copy path.travis.yml
More file actions
34 lines (27 loc) · 615 Bytes
/
.travis.yml
File metadata and controls
34 lines (27 loc) · 615 Bytes
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
language: android
android:
components:
- tools
- platform-tools
- build-tools-28
- android-28
- extra-android-support
- extra-android-m2repository
licenses:
- android-sdk-license-5be876d5
- android-sdk-license-c81a61d9
- 'android-sdk-preview-license-.+'
- 'android-sdk-license-.+'
- 'google-gdk-license-.+'
jdk: oraclejdk8
before_install:
- yes | sdkmanager "platforms;android-27"
install:
- true
after_success:
- bash <(curl -s https://codecov.io/bash)
script:
- ./gradlew clean build test jacocoTestReport check
cache:
directories:
- $HOME/.m2