forked from sephiroth74/android-target-tooltip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
46 lines (34 loc) · 1.11 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
language: android
branches:
only:
- master
notifications:
email: true
before_install:
# environment info
- ./gradlew -v
- uname -a
# for gradle output style
- export TERM=dumb
# just to test gradle version, against our provided one
- ./gradlew -v
# Install required components.
# For a full list, run `android list sdk -a --extended`
- echo yes | android update sdk --filter platform-tools --no-ui --force > /dev/null
- echo yes | android update sdk --all --filter build-tools-19.1.0 --no-ui --force > /dev/null
- echo yes | android update sdk --filter android-19 --no-ui --force > /dev/null
- echo yes | android update sdk --filter extra-android-m2repository --no-ui --force > /dev/null
# Otherwise
#- echo yes | android update sdk -t tools,platform-tools,extra-android-support,extra-android-m2repository,android-19 --force --no-ui
android:
components:
- build-tools-19.1.0
- android-19
- sysimg-19
- extra-android-support
licenses:
- android-sdk-license-bcbbd656
- '.*intel.+'
# Let's try to build...
install: ./gradlew clean build
script: ./gradlew check