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

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2021-12-08 18:24:12 +0300
committerJoas Schilling <coding@schilljs.com>2022-02-17 18:35:20 +0300
commit5da5ac9d48af9ac99f932036c8313d25d5949e9b (patch)
treebe66e8f317a1cb50d8d561beeb043253ac834fab /.drone.yml
parent831fb9c0d31c06b7749df568610796911ba95d66 (diff)
Add a federation context which starts the second server
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to '.drone.yml')
-rw-r--r--.drone.yml124
1 files changed, 124 insertions, 0 deletions
diff --git a/.drone.yml b/.drone.yml
index 78fc3fea9..1d07dc769 100644
--- a/.drone.yml
+++ b/.drone.yml
@@ -215,6 +215,41 @@ trigger:
---
kind: pipeline
+name: int-sqlite-federation
+
+steps:
+ - name: integration-federation
+ image: ghcr.io/nextcloud/continuous-integration-php8.0:latest
+ 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/federation
+
+services:
+ - name: cache
+ image: ghcr.io/nextcloud/continuous-integration-redis:latest
+
+trigger:
+ branch:
+ - master
+ - stable*
+ event:
+ - pull_request
+ - push
+
+---
+kind: pipeline
name: int-sqlite-sharing
steps:
@@ -561,6 +596,51 @@ trigger:
---
kind: pipeline
+name: int-mysql-federation
+
+steps:
+ - name: integration-federation
+ image: ghcr.io/nextcloud/continuous-integration-php8.0:latest
+ 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/federation
+
+services:
+ - name: cache
+ image: ghcr.io/nextcloud/continuous-integration-redis:latest
+ - name: mysql
+ image: ghcr.io/nextcloud/continuous-integration-mariadb-10.4:10.4
+ 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-mysql-sharing
steps:
@@ -921,6 +1001,50 @@ trigger:
---
kind: pipeline
+name: int-pgsql-federation
+
+steps:
+ - name: integration-federation
+ image: ghcr.io/nextcloud/continuous-integration-php8.0:latest
+ 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/federation
+
+services:
+ - name: cache
+ image: ghcr.io/nextcloud/continuous-integration-redis:latest
+ - name: pgsql
+ image: ghcr.io/nextcloud/continuous-integration-postgres-13:postgres-13
+ 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: int-pgsql-sharing
steps: