From 94b1498944b5ebf0db2bc26118b40423686ed3a1 Mon Sep 17 00:00:00 2001 From: Waylon Calabrese Date: Fri, 19 Aug 2016 13:57:16 -0500 Subject: [PATCH 1/6] add travis ci --- .travis.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..b22d8a4 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,24 @@ +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-19.1.0 + + # The SDK version used to compile your project + - android-22 + + # Additional components + - extra-google-google_play_services + - extra-google-m2repository + - extra-android-m2repository + - addon-google_apis-google-19 + + # Specify at least one system image, + # if you need to run emulator(s) during your tests + - sys-img-armeabi-v7a-android-22 + - sys-img-x86-android-17 \ No newline at end of file From ad7b7c7f73e87c6a3a0fa42a1f003428a439ede1 Mon Sep 17 00:00:00 2001 From: Waylon Calabrese Date: Fri, 19 Aug 2016 14:13:54 -0500 Subject: [PATCH 2/6] updated android versions --- .travis.yml | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/.travis.yml b/.travis.yml index b22d8a4..d88a31f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,16 +1,11 @@ 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-19.1.0 + - build-tools-24.0.0 # The SDK version used to compile your project - - android-22 + - android-24 # Additional components - extra-google-google_play_services @@ -20,5 +15,5 @@ android: # Specify at least one system image, # if you need to run emulator(s) during your tests - - sys-img-armeabi-v7a-android-22 - - sys-img-x86-android-17 \ No newline at end of file + # - sys-img-armeabi-v7a-android-22 + # - sys-img-x86-android-17 \ No newline at end of file From 0c9c5353ab18ae8ffff092a1338a56d392bc959c Mon Sep 17 00:00:00 2001 From: Waylon Calabrese Date: Fri, 19 Aug 2016 14:17:56 -0500 Subject: [PATCH 3/6] add gradle wrapper task --- .travis.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index d88a31f..70b382a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,10 +8,10 @@ android: - android-24 # Additional components - - extra-google-google_play_services - - extra-google-m2repository - - extra-android-m2repository - - addon-google_apis-google-19 + # - extra-google-google_play_services + # - extra-google-m2repository + # - extra-android-m2repository + # - addon-google_apis-google-19 # Specify at least one system image, # if you need to run emulator(s) during your tests From 3801bea9b3db71ee6d8c825594c84477f0e449f2 Mon Sep 17 00:00:00 2001 From: Waylon Calabrese Date: Fri, 19 Aug 2016 14:50:28 -0500 Subject: [PATCH 4/6] moar travis haxx --- .travis.yml | 11 +++++++---- build.gradle | 4 ++++ 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 70b382a..aa2313c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,11 +9,14 @@ android: # Additional components # - extra-google-google_play_services - # - extra-google-m2repository - # - extra-android-m2repository - # - addon-google_apis-google-19 + - extra-google-m2repository + - extra-android-m2repository + - addon-google_apis-google-24 # Specify at least one system image, # if you need to run emulator(s) during your tests # - sys-img-armeabi-v7a-android-22 - # - sys-img-x86-android-17 \ No newline at end of file + # - sys-img-x86-android-17 + + before_install: + - gradle wrapper diff --git a/build.gradle b/build.gradle index 1a16d93..f858979 100644 --- a/build.gradle +++ b/build.gradle @@ -37,3 +37,7 @@ allprojects { task clean(type: Delete) { delete rootProject.buildDir } + +task wrapper(type: Wrapper) { + gradleVersion = '2.2' +} From 7e31dddf39aaef865b85f2a856a085bb3cd023df Mon Sep 17 00:00:00 2001 From: Waylon Calabrese Date: Fri, 19 Aug 2016 14:52:21 -0500 Subject: [PATCH 5/6] it fixes teh yaml --- .travis.yml | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/.travis.yml b/.travis.yml index aa2313c..57d7d9e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,22 +1,22 @@ language: android android: components: - # The BuildTools version used by your project - - build-tools-24.0.0 + # The BuildTools version used by your project + - build-tools-24.0.0 - # The SDK version used to compile your project - - android-24 + # The SDK version used to compile your project + - android-24 - # Additional components - # - extra-google-google_play_services - - extra-google-m2repository - - extra-android-m2repository - - addon-google_apis-google-24 + # Additional components + # - extra-google-google_play_services + - extra-google-m2repository + - extra-android-m2repository + - addon-google_apis-google-24 - # Specify at least one system image, - # if you need to run emulator(s) during your tests - # - sys-img-armeabi-v7a-android-22 - # - sys-img-x86-android-17 + # Specify at least one system image, + # if you need to run emulator(s) during your tests + # - sys-img-armeabi-v7a-android-22 + # - sys-img-x86-android-17 - before_install: - - gradle wrapper + before_install: + - gradle wrapper \ No newline at end of file From fe270ff31bcd1c66b9e29701e77ed19070d2c052 Mon Sep 17 00:00:00 2001 From: Waylon Calabrese Date: Fri, 19 Aug 2016 15:52:16 -0500 Subject: [PATCH 6/6] haxingtravis --- .travis.yml | 24 ++++++------------------ 1 file changed, 6 insertions(+), 18 deletions(-) diff --git a/.travis.yml b/.travis.yml index 57d7d9e..e69113a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,22 +1,10 @@ language: android android: components: - # The BuildTools version used by your project - - build-tools-24.0.0 + - tools + - platform-tools + - build-tools-23.0.2 + - android-23 - # The SDK version used to compile your project - - android-24 - - # Additional components - # - extra-google-google_play_services - - extra-google-m2repository - - extra-android-m2repository - - addon-google_apis-google-24 - - # Specify at least one system image, - # if you need to run emulator(s) during your tests - # - sys-img-armeabi-v7a-android-22 - # - sys-img-x86-android-17 - - before_install: - - gradle wrapper \ No newline at end of file +script: + - ./gradlew build connectedCheck \ No newline at end of file