nextcloud-android/.drone.yml

68 lines
2 KiB
YAML
Raw Normal View History

2016-09-19 16:16:06 +03:00
pipeline:
compile:
2018-09-25 14:12:00 +03:00
image: nextcloudci/android:android-42
2017-05-11 21:19:40 +03:00
commands:
# build app and assemble APK
- sh -c "if [ '${FLAVOR}' != 'Analysis' ]; then ./gradlew assemble${FLAVOR}; fi"
when:
matrix:
FLAVOR: [Generic, Gplay]
2017-05-11 21:19:40 +03:00
test:
2018-09-25 14:12:00 +03:00
image: nextcloudci/android:android-42
privileged: true
commands:
- emulator -avd android-27 -no-window -no-audio &
- ./wait_for_emulator.sh
- ./gradlew assembleGplayDebug
- ./gradlew jacocoTestGplayDebugUnitTestReport || scripts/uploadReport.sh $LOG_USERNAME $LOG_PASSWORD $DRONE_BUILD_NUMBER "Unit"
- ./gradlew installGplayDebugAndroidTest
- ./gradlew createGplayDebugCoverageReport || scripts/uploadReport.sh $LOG_USERNAME $LOG_PASSWORD $DRONE_BUILD_NUMBER "IT"
- ./gradlew combinedTestReport
- curl -o codecov.sh https://codecov.io/bash
- bash ./codecov.sh -t fc506ba4-33c3-43e4-a760-aada38c24fd5
secrets: [ LOG_USERNAME, LOG_PASSWORD ]
when:
matrix:
FLAVOR: Gplay
analysis:
2018-09-25 14:12:00 +03:00
image: nextcloudci/android:android-42
2017-08-23 15:32:39 +03:00
commands:
- export BRANCH=$(scripts/analysis/getBranchName.sh $GIT_USERNAME $GIT_TOKEN $DRONE_PULL_REQUEST)
- scripts/analysis/analysis-wrapper.sh $GIT_USERNAME $GIT_TOKEN $BRANCH $LOG_USERNAME $LOG_PASSWORD $DRONE_BUILD_NUMBER $DRONE_PULL_REQUEST
2017-08-23 15:32:39 +03:00
secrets: [ GIT_USERNAME, GIT_TOKEN, LOG_USERNAME, LOG_PASSWORD ]
when:
matrix:
FLAVOR: Analysis
2017-11-07 12:01:33 +03:00
notify:
image: drillster/drone-email
host: $EMAIL_HOST
port: 587
username: $EMAIL_USERNAME
password: $EMAIL_PASSWORD
from: nextcloud-drone@kaminsky.me
recipients_only: true
recipients: [ $EMAIL_RECIPIENTS ]
secrets: [ EMAIL_USERNAME, EMAIL_PASSWORD, EMAIL_RECIPIENTS, EMAIL_HOST ]
when:
2017-11-10 13:08:04 +03:00
event: push
2017-11-09 09:52:09 +03:00
status: failure
branch: master
2017-05-11 15:25:42 +03:00
matrix:
FLAVOR:
- Generic
- Gplay
- Analysis
services:
server:
image: nextcloudci/server:server-3
when:
matrix:
FLAVOR: Gplay
2017-08-24 20:39:00 +03:00
branches: master