38 lines
774 B
YAML
38 lines
774 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: default
|
|
|
|
steps:
|
|
- name: build
|
|
image: nextcloudci/android:android-49
|
|
volumes:
|
|
- name: gradle
|
|
path: /root/.gradle
|
|
- name: android
|
|
path: /opt/android-sdk-linux
|
|
commands:
|
|
- ./gradlew build
|
|
|
|
- name: notify
|
|
image: appleboy/drone-telegram
|
|
settings:
|
|
token:
|
|
from_secret: telegram_token
|
|
to:
|
|
from_secret: telegram_user
|
|
format: markdown
|
|
message: |
|
|
Build [#{{build.number}}]({{build.link}}) from commit [{{truncate commit.sha 10}}]({{commit.link}}) on {{commit.branch}} **failed**.
|
|
{{uppercasefirst commit.author}} please fix me!
|
|
when:
|
|
status:
|
|
- failure
|
|
|
|
volumes:
|
|
- name: gradle
|
|
host:
|
|
path: /home/drone/.gradle
|
|
- name: android
|
|
host:
|
|
path: /home/drone/Android/Sdk
|