forked from pwittchen/NetworkEvents
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
25 lines (21 loc) · 930 Bytes
/
.travis.yml
File metadata and controls
25 lines (21 loc) · 930 Bytes
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
language: android
# Emulator Management: Create, Start and Wait
# Temporarily commented, becasue it didn't work on Travis (emulator didn't start).
# before_script:
# - echo no | android create avd --force -n test -t android-19 --abi armeabi-v7a
# - emulator -avd test -no-skin -no-audio -no-window &
# - android-wait-for-emulator
# - adb shell input keyevent 82 &
android:
components:
- build-tools-21.1.1
- android-21
- sys-img-armeabi-v7a-android-21
install:
# Check install section: http://docs.travis-ci.com/user/build-configuration/#install
# If you'd like to skip the install stage entirely, set it to true and nothing will be run.
- true
script:
# By default Travis-ci executes './gradlew build connectedCheck' if no 'script:' section found.
# We are skipping Unit Tests, because Travis is not able to start emulator required for them (it's still in exmperimental phase)
- ./gradlew build