0
0
mirror of https://github.com/ankidroid/Anki-Android.git synced 2024-09-20 20:03:05 +02:00
Anki-Android/.travis.yml
Tim Rae e4a542de33 Don't exclude the master branch from CI builds
We used to name the main branch "develop" and "master" contained the latest released source code. We no longer do this, and "master" contains the latest development source code
2017-07-17 09:21:29 +09:00

46 lines
967 B
YAML

language: android
sudo: false
env:
global:
- ADB_INSTALL_TIMEOUT=8
android:
components:
- tools
- platform-tools
- build-tools-24.0.3
- build-tools-25.0.1
- android-25
- extra-android-support
- extra-android-m2repository
- sys-img-armeabi-v7a-android-21
licenses:
- 'android-sdk-preview-license-.+'
- 'android-sdk-license-.+'
- 'google-gdk-license-.+'
jdk:
- oraclejdk8
# Emulator Management: Create, Start and Wait
before_script:
- echo no | android create avd --force -n test -t android-21 --sdcard 10M --abi armeabi-v7a
- emulator -avd test -no-skin -no-audio -no-window &
- android-wait-for-emulator
- adb shell input keyevent 82 &
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
script: ./gradlew :AnkiDroid:connectedCheck
notifications:
email:
- flerda+ankidroid-continuous@gmail.com