From 43a33be3993bfacac46fd7fe7b1a07a60afed1cc Mon Sep 17 00:00:00 2001 From: Alex Date: Sat, 4 Jun 2016 17:17:19 -0400 Subject: [PATCH] #321 temporarily disabling the maven build from ci until the maven-android plugin folks get things in order --- .travis.yml | 19 ++++++++++--------- travis.sh | 9 +++++---- 2 files changed, 15 insertions(+), 13 deletions(-) diff --git a/.travis.yml b/.travis.yml index cd023fca..5be62e69 100644 --- a/.travis.yml +++ b/.travis.yml @@ -85,13 +85,14 @@ before_install: # mvn sdk deploy before_script: # android list - - mkdir temp - - cd temp - - git clone https://github.com/simpligility/maven-android-sdk-deployer - - cd maven-android-sdk-deployer - - mvn clean install -fn -B -U - - cd .. - - cd .. + # TEMPORARY comment out of the maven build since it's broken at the moment + #- mkdir temp + #- cd temp + #- git clone https://github.com/simpligility/maven-android-sdk-deployer + #- cd maven-android-sdk-deployer + #- mvn clean install -fn -B -U + #- cd .. + #- cd .. - android-wait-for-emulator - adb shell input keyevent 82 & @@ -111,8 +112,8 @@ script: #- mvn install -Pdist #- mvn android:undeploy #build using gradle - #- ./gradlew -version - #- ./gradlew clean connectedCheck + - ./gradlew -version + - ./gradlew clean connectedCheck # fun fact, maven runs android tests concurrently for all connected devices, gradle does not # since we're using build matrix, each build target compiles the source, fires up it's specific vm, runs the tests, then exits. # --stacktrace diff --git a/travis.sh b/travis.sh index 8f462dc7..c3c88587 100755 --- a/travis.sh +++ b/travis.sh @@ -31,10 +31,11 @@ PING_LOOP_PID=$! # My build is using maven, but you could build anything with this, E.g. # your_build_command_1 >> $BUILD_OUTPUT 2>&1 # your_build_command_2 >> $BUILD_OUTPUT 2>&1 -mvn clean install -fn -B -U -Pdist >> $BUILD_OUTPUT 2>&1 -mvn install -fn -B -U -Pdist >> $BUILD_OUTPUT 2>&1 -mvn install -Pdist >> $BUILD_OUTPUT 2>&1 -mvn android:undeploy >> $BUILD_OUTPUT 2>&1 +# mvn clean install -fn -B -U -Pdist >> $BUILD_OUTPUT 2>&1 +# mvn install -fn -B -U -Pdist >> $BUILD_OUTPUT 2>&1 +# mvn install -Pdist >> $BUILD_OUTPUT 2>&1 +# mvn android:undeploy >> $BUILD_OUTPUT 2>&1 + #build using gradle ./gradlew -version >> $BUILD_OUTPUT 2>&1 ./gradlew clean connectedCheck >> $BUILD_OUTPUT 2>&1