From 6e1653c192ae6ed76193d4db49309484c428efc5 Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Tue, 27 Sep 2016 00:48:51 +0200 Subject: [PATCH] Add signed-off-checker Signed-off-by: Lukas Reschke --- .drone.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..0d2d047 --- /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=files_texteditor + - 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