diff --git a/.drone.yml b/.drone.yml index e2490ee..14662fc 100644 --- a/.drone.yml +++ b/.drone.yml @@ -32,37 +32,6 @@ trigger: - pull_request - push -type: docker ---- -kind: pipeline -name: unit-sqlite-php7.3 - -steps: - - name: sqlite-php7.3 - 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: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 ---