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

github.com/nextcloud/data_request.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '.drone.yml')
-rw-r--r--.drone.yml67
1 files changed, 0 insertions, 67 deletions
diff --git a/.drone.yml b/.drone.yml
deleted file mode 100644
index 14662fc..0000000
--- a/.drone.yml
+++ /dev/null
@@ -1,67 +0,0 @@
-kind: pipeline
-name: compatibility
-
-steps:
- - name: syntax-php7.4
- image: nextcloudci/php7.4:php7.4-3
- environment:
- APP_NAME: data_request
- CORE_BRANCH: master
- DATABASEHOST: sqlite
- commands:
- - composer install
- - ./vendor/bin/parallel-lint --exclude ./vendor/ .
- - name: app-code-check
- image: nextcloudci/php7.3:php7.3-5
- environment:
- APP_NAME: data_request
- CORE_BRANCH: master
- DATABASEHOST: sqlite
- commands:
- - wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh
- - bash ./before_install.sh $APP_NAME $CORE_BRANCH $DATABASEHOST
- - cd ../server
- - ./occ app:check-code $APP_NAME
- - cd apps/$APP_NAME/
-
-trigger:
- branch:
- - master
- - stable*
- event:
- - pull_request
- - push
-
-type: docker
-
----
-kind: pipeline
-name: unit-sqlite-php7.4
-
-steps:
- - name: sqlite-php7.4
- image: nextcloudci/php7.4:php7.4-3
- environment:
- APP_NAME: data_request
- CORE_BRANCH: master
- DATABASEHOST: sqlite
- commands:
- - wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh
- - bash ./before_install.sh $APP_NAME $CORE_BRANCH $DATABASEHOST
- - cd ../server
- - ./occ app:enable $APP_NAME
- - cd apps/$APP_NAME
-
- # Run phpunit tests
- - cd tests/unit/
- - phpunit --configuration phpunit.xml
-
-trigger:
- branch:
- - master
- - stable*
- event:
- - pull_request
- - push
-
-type: docker