forked from LogentriesCommunity/le_android
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.travis.yml
48 lines (36 loc) · 854 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
44
45
46
47
48
language: android
jdk: oraclejdk8
env:
matrix:
- ANDROID_TARGET=android-24 ANDROID_ABI=armeabi-v7a
git:
depth: 10000
matrix:
fast_finish: true
android:
components:
- platform-tools
- tools
# The BuildTools version used by your project
- build-tools-24.0.1
# The SDK version used to compile your project
- android-24
# Additional components
- extra-google-google_play_services
- extra-google-m2repository
- extra-android-m2repository
- addon-google_apis-google-24
licenses:
- android-sdk-license-.+
before_install:
- git submodule update --init --recursive
- chmod u+x gradlew
- android list sdk --no-ui --all --extended
- android list targets
install: true
script:
- ./gradlew -v
- ./gradlew clean build --stacktrace
after_failure: true
notifications:
email: false