NewPipe/.travis.yml

30 lines
751 B
YAML
Raw Normal View History

2015-12-01 21:31:10 +01:00
language: android
2015-12-01 22:32:44 +01:00
android:
2015-12-01 21:31:10 +01:00
components:
# The BuildTools version used by NewPipe
- build-tools-23.0.2
2015-12-01 21:31:10 +01:00
# The SDK version used to compile NewPipe
- android-23
2015-12-01 21:31:10 +01:00
# Additional components
- extra-android-support
2015-12-01 23:16:58 +01:00
- extra-android-m2repository
2015-12-01 21:31:10 +01:00
# Emulators
2015-12-01 23:55:07 +01:00
- sys-img-armeabi-v7a-android-21
- sys-img-armeabi-v7a-android-19
- sys-img-armeabi-v7a-android-15
2015-12-01 23:48:41 +01:00
env:
2015-12-02 00:11:39 +01:00
global:
- ADB_INSTALL_TIMEOUT=8 # minutes (2 by default)
2015-12-01 23:48:41 +01:00
matrix:
2015-12-01 23:55:07 +01:00
- ANDROID_TARGET=android-19 ANDROID_ABI=armeabi-v7a
2015-12-01 23:48:41 +01:00
before_script:
- echo no | android create avd --force -n test -t $ANDROID_TARGET --abi $ANDROID_ABI
- emulator -avd test -no-skin -no-audio -no-window &
- android-wait-for-emulator
- adb shell input keyevent 82 &