GitNex-Android-App/.drone.yml

33 lines
399 B
YAML
Raw Normal View History

2019-10-13 02:46:52 +02:00
---
kind: pipeline
2019-10-14 11:06:46 +02:00
name: gitnex-ci-test
steps:
- name: test
image: nextcloudci/android:android-49
commands:
- ./gradlew test
2019-10-13 02:46:52 +02:00
trigger:
event:
- pull_request
---
kind: pipeline
name: gitnex-ci-build
steps:
- name: build
image: nextcloudci/android:android-49
commands:
- ./gradlew build
when:
branch:
- master
trigger:
event:
- push