summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.drone.yml124
-rw-r--r--tests/integration/features/sharing-2/get.feature (renamed from tests/integration/features/sharing/get.feature)0
-rw-r--r--tests/integration/features/sharing-2/hooks.feature (renamed from tests/integration/features/sharing/hooks.feature)0
3 files changed, 124 insertions, 0 deletions
diff --git a/.drone.yml b/.drone.yml
index 8698c76ba..b9eaf0b6e 100644
--- a/.drone.yml
+++ b/.drone.yml
@@ -213,6 +213,41 @@ trigger:
---
kind: pipeline
+name: int-sqlite-sharing-2
+
+steps:
+ - name: integration-sharing-2
+ image: nextcloudci/php7.3:php7.3-5
+ environment:
+ APP_NAME: spreed
+ CORE_BRANCH: master
+ DATABASEHOST: sqlite
+ commands:
+ - bash tests/drone-run-integration-tests.sh || exit 0
+ - 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 integration tests
+ - cd tests/integration/
+ - bash run.sh features/sharing-2
+
+services:
+ - name: cache
+ image: redis
+
+trigger:
+ branch:
+ - master
+ - stable*
+ event:
+ - pull_request
+ - push
+
+---
+kind: pipeline
name: int-mysql-callapi
steps:
@@ -487,6 +522,51 @@ trigger:
---
kind: pipeline
+name: int-mysql-sharing-2
+
+steps:
+ - name: integration-sharing-2
+ image: nextcloudci/php7.3:php7.3-5
+ environment:
+ APP_NAME: spreed
+ CORE_BRANCH: master
+ DATABASEHOST: mysql
+ commands:
+ - bash tests/drone-run-integration-tests.sh || exit 0
+ - 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 integration tests
+ - cd tests/integration/
+ - bash run.sh features/sharing-2
+
+services:
+ - name: cache
+ image: redis
+ - name: mysql
+ image: mysql:5.7.22
+ environment:
+ MYSQL_ROOT_PASSWORD: owncloud
+ MYSQL_USER: oc_autotest
+ MYSQL_PASSWORD: owncloud
+ MYSQL_DATABASE: oc_autotest
+ command: [ "--innodb_large_prefix=true", "--innodb_file_format=barracuda", "--innodb_file_per_table=true" ]
+ tmpfs:
+ - /var/lib/mysql
+
+trigger:
+ branch:
+ - master
+ - stable*
+ event:
+# - pull_request
+ - push
+
+---
+kind: pipeline
name: int-pgsql-callapi
steps:
@@ -753,6 +833,50 @@ trigger:
# - pull_request
- push
+---
+kind: pipeline
+name: int-pgsql-sharing-2
+
+steps:
+ - name: integration-sharing-2
+ image: nextcloudci/php7.3:php7.3-5
+ environment:
+ APP_NAME: spreed
+ CORE_BRANCH: master
+ DATABASEHOST: pgsql
+ commands:
+ - bash tests/drone-run-integration-tests.sh || exit 0
+ - 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 integration tests
+ - cd tests/integration/
+ - bash run.sh features/sharing-2
+
+services:
+ - name: cache
+ image: redis
+ - name: pgsql
+ image: postgres:10
+ environment:
+ POSTGRES_USER: oc_autotest
+ POSTGRES_DB: oc_autotest_dummy
+ POSTGRES_HOST_AUTH_METHOD: trust
+ POSTGRES_PASSWORD:
+ tmpfs:
+ - /var/lib/postgresql/data
+
+trigger:
+ branch:
+ - master
+ - stable*
+ event:
+# - pull_request
+ - push
+
#---
#kind: pipeline
#name: acc-sqlite-app-files
diff --git a/tests/integration/features/sharing/get.feature b/tests/integration/features/sharing-2/get.feature
index d393094a4..d393094a4 100644
--- a/tests/integration/features/sharing/get.feature
+++ b/tests/integration/features/sharing-2/get.feature
diff --git a/tests/integration/features/sharing/hooks.feature b/tests/integration/features/sharing-2/hooks.feature
index 9bd9cbe15..9bd9cbe15 100644
--- a/tests/integration/features/sharing/hooks.feature
+++ b/tests/integration/features/sharing-2/hooks.feature