forked from transformaps/froody-android
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
34 lines (32 loc) · 783 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
language: android
jdk:
- oraclejdk8
android:
components:
- tools
- build-tools-25.0.2
- platform-tools
- extra-android-m2repository
- extra-google-android-support
- android-25
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
script: "./gradlew $TASK"
env:
- TASK="build -x lint"
branches:
except:
- l10n_master
- l10n_master2
- crowdin
notifications:
webhooks:
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: never # options: [always|never|change] default: always
after_success:
- bash <(curl -s https://codecov.io/bash)