-
Notifications
You must be signed in to change notification settings - Fork 10
/
.travis.yml
60 lines (50 loc) · 1.28 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
51
52
53
54
55
56
57
58
59
60
#
# Build configuration for TRAVIS CI
#
# Disabling sudo moves build to the Container Based Infrastructure on Travis CI
sudo: false
language: android
jdk: oraclejdk8
env:
global:
- MALLOC_ARENA_MAX=2
- ADB_INSTALL_TIMEOUT=10
- ANDROID_API_LEVEL=25
- ANDROID_BUILD_TOOLS_VERSION=25.0.3
- ANDROID_ABI=armeabi-v7a
- ANDROID_TAG=google_apis
android:
components:
- platform-tools
- tools
- tools
- android-$ANDROID_API_LEVEL
- build-tools-$ANDROID_BUILD_TOOLS_VERSION
# For Google Maps API v1
- addon-google_apis-google-$ANDROID_API_LEVEL
# Google Play Services
- extra-google-google_play_services
# Support library
- extra-android-support
# Latest artifacts in local repository
- extra-google-m2repository
- extra-android-m2repository
# Specify at least one system image
- sys-img-armeabi-v7a-android-$ANDROID_API_LEVEL
- sys-img-armeabi-v7a-addon-google_apis-google-$ANDROID_API_LEVEL
licenses:
- 'android-sdk-preview-license-.+'
- 'android-sdk-license-.+'
- 'google-gdk-license-.+'
- '.+'
before_install:
- pip install --user codecov
script:
- sh ci.sh
after_success:
- codecov
notifications:
email: true
slack: myntra:3GgFvhHOLMEe3WIVzuoFUW8Y
cache: false
sudo: required