mirror of
https://github.com/gitnex-org/gitnex.git
synced 2026-07-17 02:13:37 -05:00
32 lines
381 B
YAML
32 lines
381 B
YAML
---
|
|
kind: pipeline
|
|
name: gitnex-ci-test
|
|
|
|
steps:
|
|
|
|
- name: test
|
|
image: nextcloudci/android:android-49
|
|
commands:
|
|
- ./gradlew test
|
|
|
|
trigger:
|
|
event:
|
|
- pull_request
|
|
|
|
---
|
|
kind: pipeline
|
|
name: gitnex-ci-build
|
|
|
|
steps:
|
|
|
|
- name: build
|
|
image: nextcloudci/android:android-49
|
|
commands:
|
|
- ./gradlew build
|
|
|
|
trigger:
|
|
event:
|
|
- push
|
|
branch:
|
|
- master
|