From 88a8303b1c621cc6083b2e5cfccee0f3c76086ae Mon Sep 17 00:00:00 2001 From: 6543 <6543@obermui.de> Date: Thu, 10 Oct 2019 03:29:35 +0200 Subject: [PATCH] Add Drone CI Config * testing - test - build --- .drone.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 00000000..b1ca3405 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,22 @@ +kind: pipeline +name: testing + +steps: + + - name: test + image: nextcloudci/android:android-49 + commands: + - ./gradlew test + + - name: build + image: nextcloudci/android:android-49 + commands: + - ./gradlew build + when: + branch: + - master + +trigger: + event: + - push + - pull_request