-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
50 lines (38 loc) · 1.22 KB
/
.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
44
45
46
47
48
49
50
language: android
jdk: oraclejdk8
sudo: false
notifications:
email:
env:
global:
- ADB_INSTALL_TIMEOUT=10 #Time out to 10 mins
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
cache:
directories: #Cache all dirs under .gradle folder
- $HOME/.gradle/daemon #Cache daemon logs
- $HOME/.gradle/native #Cache library downloaded from the gradle dependency
- $HOME/.gradle/wrapper #Cache the gradle
android:
update_sdk: true
components:
- platform-tools
- tools
- build-tools-25.0.1
- android-25
# Additional components
- extra-google-google_play_services
- extra-google-m2repository
- extra-android-m2repository
before_script:
- chmod +x gradlew #Grand permissions
script:
- echo "Travis branch is $TRAVIS_BRANCH"
- echo "Travis branch is in pull request $TRAVIS_PULL+REQUEST"
- ./gradlew assembleDebug
before_install:
- pip install --user codecov #Install codecov
after_success:
- codecov -t a2d569ed-e94b-4f97-8df9-2ad1316d89d9 #Run codecov
after_failure: "cat $TRAVIS_BUILD_DIR/app/build/outputs/lint-results-debug.xml"