Skip to content

Commit

Permalink
Fix Travic CI configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
crazymaster authored and kevinsawicki committed Jun 16, 2013
1 parent 823cde1 commit 6db1a52
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
language: java
jdk: oraclejdk7

notifications:
email: false

before_install:
- wget http://dl.google.com/android/android-sdk_r21-linux.tgz
- tar -zxf android-sdk_r21-linux.tgz
- export ANDROID_HOME=~/builds/github/android/android-sdk-linux
- export PATH=${ANDROID_HOME}/tools:${ANDROID_HOME}/platform-tools:${PATH}
- android update sdk --filter platform-tools,android-16 --no-ui --force
- sudo apt-get update -qq
- if [ `uname -m` = x86_64 ]; then sudo apt-get install -qq --force-yes libgd2-xpm ia32-libs ia32-libs-multiarch > /dev/null; fi
- wget http://dl.google.com/android/android-sdk_r21.1-linux.tgz
- tar -zxf android-sdk_r21.1-linux.tgz
- export ANDROID_HOME=$PWD/android-sdk-linux
- export PATH=${PATH}:${ANDROID_HOME}/tools:${ANDROID_HOME}/platform-tools
- android update sdk --filter platform-tools,android-16 --no-ui --force > /dev/null

0 comments on commit 6db1a52

Please sign in to comment.