nextcloud-android/.drone.yml

37 lines
1.3 KiB
YAML
Raw Normal View History

2016-09-19 16:16:06 +03:00
pipeline:
test:
image: nextcloudci/android:android-17
2016-09-19 16:16:06 +03:00
commands:
# uncomment gplay for Gplay, Modified only
- sh -c "if [ '$FLAVOUR' != 'Generic' ]; then sed -i '/com.google.*.gms/s/^.*\/\///g' build.gradle; fi"
2016-09-19 16:16:06 +03:00
- echo no | android create avd --force -n test -t $ANDROID_TARGET --abi $ANDROID_ABI -c 20M
2016-09-26 17:24:01 +03:00
- emulator -avd test -no-window &
2016-09-19 16:16:06 +03:00
- ./wait_for_emulator.sh
2016-09-19 16:16:06 +03:00
# build app and assemble APK, in debug mode
- ./gradlew assemble${FLAVOUR}
2016-09-19 16:16:06 +03:00
# run all the instrumented tests of app module - DISABLED until we get an stable setup for Espresso in Travis
# - ./gradlew connectedDebugAndroidTest --info
2016-09-19 16:16:06 +03:00
# install app, then assemble and install instrumented tests of app module
- ./gradlew :install${FLAVOUR}Debug
- ./gradlew :install${FLAVOUR}DebugAndroidTest
2016-09-19 16:16:06 +03:00
# run sample instrumented unit test
# TODO fails because test runner is not available
#- adb shell am instrument -w -e debug false -e class com.owncloud.android.datamodel.OCFileUnitTest com.owncloud.android.test/android.support.test.runner.AndroidJUnitRunner
2016-09-19 16:16:06 +03:00
environment:
2017-02-25 04:43:06 +03:00
- ANDROID_TARGET=android-24
2016-09-26 14:53:52 +03:00
- ANDROID_ABI=armeabi-v7a
2016-09-19 16:16:06 +03:00
- LD_LIBRARY_PATH=/usr/lib/x86_64-linux-gnu/:/opt/android-sdk-linux/tools/lib64/gles_mesa/
matrix:
FLAVOUR:
- Generic
- Gplay
- Modified
branches: master