Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/apps.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2016-09-27 01:46:07 +0300
committerGitHub <noreply@github.com>2016-09-27 01:46:07 +0300
commite36c5c8f2604c45045863147f0639cadb239d48a (patch)
treedb759f0746f886bf7e959221a9cd57e2b80f4b15
parent2e53825665e716b25ed580693c3a1bb0ef0d4a39 (diff)
parent8afcb070c55b0e51d2655bfd9dd0ac97d7bb9389 (diff)
Merge pull request #12 from nextcloud/add-signed-off-checker
Add signed-off-checker
-rw-r--r--.drone.yml21
1 files changed, 21 insertions, 0 deletions
diff --git a/.drone.yml b/.drone.yml
new file mode 100644
index 000000000..85c5cef94
--- /dev/null
+++ b/.drone.yml
@@ -0,0 +1,21 @@
+pipeline:
+ clone:
+ image: plugins/git
+ depth: 1
+ signed-off-check:
+ image: nextcloudci/php7.0:php7.0-2
+ environment:
+ - APP_NAME=apps
+ - CORE_BRANCH=master
+ - DB=sqlite
+ commands:
+ - wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh
+ - bash ./before_install.sh $APP_NAME $CORE_BRANCH $DB
+ - cd ../server
+ - php ./build/signed-off-checker.php
+ when:
+ matrix:
+ TESTS: signed-off-check
+matrix:
+ include:
+ - TESTS: signed-off-check