From 439e226a8038241b501e20cfffb2797f0ab77705 Mon Sep 17 00:00:00 2001 From: Branden Archer Date: Sat, 30 Jan 2016 20:36:10 -0500 Subject: [PATCH] Enable building with Travis CI --- .travis.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 000000000..a215383b5 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,25 @@ +language: android +android: + components: + # Uncomment the lines below if you want to + # use the latest revision of Android SDK Tools + - platform-tools + - tools + + # The BuildTools version used by your project + - build-tools-23.0.2 + + # The SDK version used to compile your project + - android-23 + + # Additional components + - extra + + # Specify at least one system image, + # if you need to run emulator(s) during your tests + - sys-img-x86-android-17 + +script: gradle build lint test + +after_failure: +- cat app/build/outputs/lint-results.xml