mirror of
https://github.com/mollyim/osmdroid.git
synced 2025-05-13 07:10:36 +01:00
#321 temporarily disabling the maven build from ci until the maven-android plugin folks get things in order
This commit is contained in:
parent
15180a3a31
commit
43a33be399
2 changed files with 15 additions and 13 deletions
19
.travis.yml
19
.travis.yml
|
@ -85,13 +85,14 @@ before_install:
|
||||||
# mvn sdk deploy
|
# mvn sdk deploy
|
||||||
before_script:
|
before_script:
|
||||||
# android list
|
# android list
|
||||||
- mkdir temp
|
# TEMPORARY comment out of the maven build since it's broken at the moment
|
||||||
- cd temp
|
#- mkdir temp
|
||||||
- git clone https://github.com/simpligility/maven-android-sdk-deployer
|
#- cd temp
|
||||||
- cd maven-android-sdk-deployer
|
#- git clone https://github.com/simpligility/maven-android-sdk-deployer
|
||||||
- mvn clean install -fn -B -U
|
#- cd maven-android-sdk-deployer
|
||||||
- cd ..
|
#- mvn clean install -fn -B -U
|
||||||
- cd ..
|
#- cd ..
|
||||||
|
#- cd ..
|
||||||
|
|
||||||
- android-wait-for-emulator
|
- android-wait-for-emulator
|
||||||
- adb shell input keyevent 82 &
|
- adb shell input keyevent 82 &
|
||||||
|
@ -111,8 +112,8 @@ script:
|
||||||
#- mvn install -Pdist
|
#- mvn install -Pdist
|
||||||
#- mvn android:undeploy
|
#- mvn android:undeploy
|
||||||
#build using gradle
|
#build using gradle
|
||||||
#- ./gradlew -version
|
- ./gradlew -version
|
||||||
#- ./gradlew clean connectedCheck
|
- ./gradlew clean connectedCheck
|
||||||
# fun fact, maven runs android tests concurrently for all connected devices, gradle does not
|
# 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.
|
# since we're using build matrix, each build target compiles the source, fires up it's specific vm, runs the tests, then exits.
|
||||||
# --stacktrace
|
# --stacktrace
|
||||||
|
|
|
@ -31,10 +31,11 @@ PING_LOOP_PID=$!
|
||||||
# My build is using maven, but you could build anything with this, E.g.
|
# 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_1 >> $BUILD_OUTPUT 2>&1
|
||||||
# your_build_command_2 >> $BUILD_OUTPUT 2>&1
|
# your_build_command_2 >> $BUILD_OUTPUT 2>&1
|
||||||
mvn clean install -fn -B -U -Pdist >> $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 -fn -B -U -Pdist >> $BUILD_OUTPUT 2>&1
|
||||||
mvn install -Pdist >> $BUILD_OUTPUT 2>&1
|
# mvn install -Pdist >> $BUILD_OUTPUT 2>&1
|
||||||
mvn android:undeploy >> $BUILD_OUTPUT 2>&1
|
# mvn android:undeploy >> $BUILD_OUTPUT 2>&1
|
||||||
|
|
||||||
#build using gradle
|
#build using gradle
|
||||||
./gradlew -version >> $BUILD_OUTPUT 2>&1
|
./gradlew -version >> $BUILD_OUTPUT 2>&1
|
||||||
./gradlew clean connectedCheck >> $BUILD_OUTPUT 2>&1
|
./gradlew clean connectedCheck >> $BUILD_OUTPUT 2>&1
|
||||||
|
|
Loading…
Reference in a new issue