From 0eeadbf77f3ab718522a081c62e0f6a79a4a527d Mon Sep 17 00:00:00 2001 From: Branden Archer Date: Sat, 20 May 2017 13:36:23 -0400 Subject: [PATCH] Build only the release variant Building both debug and release was unnecessary, and only increased the time to validate a pull request --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 70f45c3e8..ea1122643 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,7 +13,7 @@ android: # The SDK version used to compile your project - android-23 -script: ./gradlew build lint findbugs test +script: ./gradlew assembleRelease testReleaseUnitTest lintRelease findbugs after_failure: - cat app/build/reports/findbugs/findbugs.html