-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy path.travis.yml
58 lines (52 loc) · 1.54 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
language: android
# Use the Travis Container-Based Infrastructure
sudo: false
cache:
directories:
- $HOME/.gradle/caches/2.9
- $HOME/.gradle/daemon
- $HOME/.gradle/native
- $HOME/.gradle/wrapper
env:
global:
- GRADLE_OPTS="-Xmx512m -XX:MaxPermSize=512m"
- ADB_INSTALL_TIMEOUT=8
android:
components:
# Latest revision of Android SDK Tools
- platform-tools
- tools
# The BuildTools version used by your project
- build-tools-22.0.1
# The SDK version used to compile your project
- android-22
# Additional components
- extra-google-google_play_services
- extra-google-m2repository
- extra-android-m2repository
- build-tools-23.0.2
- build-tools-22.2.1
- android-23
- android-15
# Specify at least one system image,
# if you need to run emulator(s) during your tests
- sys-img-armeabi-v7a-android-21
# Emulator Management: Create, Start and Wait
before_script:
# Emulator creates a 32MB SD card file to store cucumber html/json reports
- echo no | android create avd --force -n test -t android-21 --abi armeabi-v7a -c 32M
- emulator -avd test -no-audio -no-window &
- android-wait-for-emulator
- sleep 180
- adb devices
- adb shell input keyevent 82 &
script:
- ./gradlew connectedAndroidTest --info
after_success:
- ./gradlew jacocoFullReport
- pip install --user codecov
- codecov
- bash <(curl -s https://codecov.io/bash) -t 63323c0a-a93b-4594-aa50-ba21fc0a3a1e
notifications:
slack: mercadopagosdk:p30pAFxzQZxc048aWumH1ZmO
email: false