-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
59 lines (55 loc) · 1.95 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
language: android
# Use the Travis Container-Based Infrastructure
sudo: false
jdk:
- oraclejdk8
cache:
directories:
- $HOME/.gradle/wrapper
env:
global:
- GRADLE_OPTS="-Xmx512m -XX:MaxPermSize=512m"
- ADB_INSTALL_TIMEOUT=8
before_install:
- echo "$ANDROID_HOME"
- mkdir "$ANDROID_HOME/licenses" || true
- echo -e "\n8933bad161af4178b1185d1a37fbf41ea5269c55" > "$ANDROID_HOME/licenses/android-sdk-license"
- echo -e "\n84831b9409646a918e30573bab4c9c91346d8abd" > "$ANDROID_HOME/licenses/android-sdk-preview-license"
android:
components:
# Latest revision of Android SDK Tools
- tools
- tools
- platform-tools
# The BuildTools version used by your project
- build-tools-25.0.0
# The SDK version used to compile your project
- android-22
- android-25
# Additional components
- extra-google-m2repository
- extra-android-m2repository
# 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:
- chmod +x gradlew
# Add licenses to Android SDK
# 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
# ARM emulator is very slow to start without hardware acceleration
- sleep 200
- adb devices
- adb shell settings put global window_animation_scale 0
- adb shell settings put global transition_animation_scale 0
- adb shell settings put global animator_duration_scale 0
- adb shell input keyevent 82 &
script:
- ./gradlew check connectedCheck -PdisablePreDex
after_script:
- echo "Travis TRAVIS_BUILD_DIR:"${TRAVIS_BUILD_DIR}
- cat ${TRAVIS_BUILD_DIR}/app/build/outputs/lint-results-debug.html
- head -200 ${TRAVIS_BUILD_DIR}/app/build/outputs/androidTest-results/connected/*