summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authordaniel oeh <daniel.oeh@gmail.com>2014-05-18 22:12:08 +0200
committerdaniel oeh <daniel.oeh@gmail.com>2014-05-18 22:12:08 +0200
commitf47a6d5597d389261216204e1fec3909fcb071bd (patch)
tree290e6254ca549535d424a9d2c68efd7d0b24ffab /.travis.yml
parent0d1d256ee4a52f455dfdd421eef00cbf1878f0c1 (diff)
downloadAntennaPod-f47a6d5597d389261216204e1fec3909fcb071bd.zip
Added travis config file
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml16
1 files changed, 16 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 000000000..22b16dee8
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,16 @@
+language: android
+jdk: oraclejdk7
+
+env:
+ matrix:
+ - ANDROID_SDKS=android-19,sysimg-19 ANDROID_TARGET=android-19 ANDROID_ABI=armeabi-v7a
+before_install:
+ - echo no | android create avd --force -n test -t $ANDROID_TARGET --abi $ANDROID_ABI
+ - emulator -avd test -no-skin -no-audio -no-window
+ - cp src/de/danoeh/antennapod/util/flattr/FlattrConfig.java.example src/de/danoeh/antennapod/util/flattr/FlattrConfig.java
+
+before_script:
+ - ./ci/wait_for_emulator.sh
+
+script:
+ - gradle connectedAndroidTest