From 9a19e3121dfe8980d214ae9d593beaba268bb4cf Mon Sep 17 00:00:00 2001 From: Yekkanti Kishore Kumar Date: Sat, 20 Oct 2012 22:12:48 +0530 Subject: [PATCH] [CI] Added travis for builds --- .travis.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..6f4cb819 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,15 @@ +language: java +before_install: + # download the latest android sdk and unzip + - wget http://dl.google.com/android/android-sdk_r18-linux.tgz + - tar -zxf android-sdk_r18-linux.tgz + # setup your ANDROID_HOME and PATH environment variables + # use ~/builds/[Github username]/[project]/android-sdk-linux + - export ANDROID_HOME=~/builds/jorge/RapidFTR---Android/android-sdk-linux + - export PATH=${PATH}:${ANDROID_HOME}/tools:${ANDROID_HOME}/platform-tools + # only update the sdk for the tools and platform-tools (1,2) and whatever api level + # you are building for android (run "android list sdk" to get the full list. 10 = 2.2 or API level 8 + - android update sdk --filter 1,2,10 --no-ui --force + +notifications: + irc: "irc.freenode.org#rapidftr" \ No newline at end of file