forked from cropsly/ffmpeg-android-java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
26 lines (21 loc) · 774 Bytes
/
.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
language: android
android:
components:
- platform-tools
- tools
# The BuildTools version used by your project
- build-tools-20.0.0
# The SDK version used to compile your project
- android-16
- sys-img-armeabi-v7a-android-16
- sys-img-x86-android-16
before_install:
- echo no | android create avd -c 50M --force -n testarm -t android-16 --abi armeabi-v7a
- echo no | android create avd -c 50M --force -n testx86 -t android-16 --abi x86
- emulator -avd testarm -no-skin -no-audio -no-window -gpu on &
- emulator -avd testx86 -no-skin -no-audio -no-window -gpu on &
before_script:
# Make sure the emulator has started before running tests
- android-wait-for-emulator
script:
- ./gradlew --info build connectedAndroidTest