kind: pipeline
name: jsunit
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: jsunit
image: nextcloudci/jsunit:jsunit-5
commands:
- ./autotest-js.sh
- curl -o codecov.sh https://codecov.io/bash
- sh -c "if [ '$DRONE_BUILD_EVENT' = 'pull_request' ]; then bash codecov.sh -B $DRONE_BRANCH -C $DRONE_COMMIT -P $DRONE_PULL_REQUEST -t 117641e2-a9e8-4b7b-984b-ae872d9b05f5; fi"
- sh -c "if [ '$DRONE_BUILD_EVENT' != 'pull_request' ]; then bash codecov.sh -B $DRONE_BRANCH -C $DRONE_COMMIT -t 117641e2-a9e8-4b7b-984b-ae872d9b05f5; fi"
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: webpack-build
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: webpack-build
image: nextcloudci/node:node-4
commands:
- npm ci
- npm run build
- git status
- bash -c "[[ ! \"`git status --porcelain `\" ]] || ( echo 'Uncommited changes in webpack build' && exit 1 )"
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: checkers
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: checkers
image: nextcloudci/php7.1:php7.1-16
commands:
- ./autotest-checkers.sh
secrets: [ github_token ]
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: handlebars
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: handlebars
image: node
commands:
- npm install handlebars -g
- ./build/compile-handlebars-templates.sh
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: syntax-and-phan
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: syntax-php7.1
image: nextcloudci/php7.1:php7.1-16
commands:
- composer install
- ./lib/composer/bin/parallel-lint --exclude lib/composer/jakub-onderka/ --exclude 3rdparty/symfony/polyfill-php70/Resources/stubs/ --exclude 3rdparty/patchwork/utf8/src/Patchwork/Utf8/Bootup/ --exclude lib/composer/composer/autoload_static.php --exclude 3rdparty/composer/autoload_static.php .
- name: syntax-php7.2
image: nextcloudci/php7.2:php7.2-12
commands:
- composer install
- ./lib/composer/bin/parallel-lint --exclude lib/composer/jakub-onderka/ --exclude 3rdparty/symfony/polyfill-php70/Resources/stubs/ --exclude 3rdparty/patchwork/utf8/src/Patchwork/Utf8/Bootup/ --exclude lib/composer/composer/autoload_static.php --exclude 3rdparty/composer/autoload_static.php --exclude 3rdparty/doctrine/cache/lib/Doctrine/Common/Cache/RiakCache.php .
- name: syntax-php7.3
image: nextcloudci/php7.3:php7.3-1
commands:
- composer install
- ./lib/composer/bin/parallel-lint --exclude lib/composer/jakub-onderka/ --exclude 3rdparty/symfony/polyfill-php70/Resources/stubs/ --exclude 3rdparty/patchwork/utf8/src/Patchwork/Utf8/Bootup/ --exclude 3rdparty/paragonie/random_compat/lib/ --exclude lib/composer/composer/autoload_static.php --exclude 3rdparty/composer/autoload_static.php --exclude 3rdparty/doctrine/cache/lib/Doctrine/Common/Cache/RiakCache.php .
- name: phan
image: nextcloudci/php7.2:php7.2-12
commands:
- composer install
- composer require --dev "phan/phan:0.11.1"
- ./lib/composer/phan/phan/phan -k build/.phan/config.php
- php ./build/.phan/plugin-checker.php
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: litmus
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: litmus-v1
image: nextcloudci/litmus-php7.1:1
commands:
- bash tests/travis/install.sh sqlite
- bash apps/dav/tests/travis/litmus-v1/script.sh
- name: litmus-v2
image: nextcloudci/litmus-php7.2:1
commands:
- bash tests/travis/install.sh sqlite
- bash apps/dav/tests/travis/litmus-v2/script.sh
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: caldavtester-new-endpoint
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: caldavtester-new-endpoint
image: nextcloudci/litmus-php7.1:1
commands:
- bash tests/travis/install.sh sqlite
- bash apps/dav/tests/travis/caldav/install.sh
- bash apps/dav/tests/travis/caldav/script-new-endpoint.sh
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: caldavtester-old-endpoint
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: caldavtester-old-endpoint
image: nextcloudci/litmus-php7.1:1
commands:
- bash tests/travis/install.sh sqlite
- bash apps/dav/tests/travis/caldav/install.sh
- bash apps/dav/tests/travis/caldav/script-old-endpoint.sh
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: carddavtester-new-endpoint
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: carddavtester-new-endpoint
image: nextcloudci/litmus-php7.1:1
commands:
- bash tests/travis/install.sh sqlite
- bash apps/dav/tests/travis/carddav/install.sh
- bash apps/dav/tests/travis/carddav/script-new-endpoint.sh
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: carddavtester-old-endpoint
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: carddavtester-old-endpoint
image: nextcloudci/litmus-php7.1:1
commands:
- bash tests/travis/install.sh sqlite
- bash apps/dav/tests/travis/carddav/install.sh
- bash apps/dav/tests/travis/carddav/script-old-endpoint.sh
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: samba
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: sqlite-php7.0-samba-native
image: nextcloudci/samba-native-php7.1:1
commands:
- smbd -D -FS &
- ./autotest-external.sh sqlite smb-linux
- wget https://codecov.io/bash -O codecov.sh
- sh -c "if [ '$DRONE_BUILD_EVENT' = 'pull_request' ]; then bash codecov.sh -B $DRONE_BRANCH -C $DRONE_COMMIT -P $DRONE_PULL_REQUEST -t 117641e2-a9e8-4b7b-984b-ae872d9b05f5 -f tests/autotest-external-clover-sqlite.xml; fi"
- sh -c "if [ '$DRONE_BUILD_EVENT' != 'pull_request' ]; then bash codecov.sh -B $DRONE_BRANCH -C $DRONE_COMMIT -t 117641e2-a9e8-4b7b-984b-ae872d9b05f5 -f tests/autotest-external-clover-sqlite.xml; fi"
- sh -c "if [ '$DRONE_BUILD_EVENT' = 'pull_request' ]; then bash codecov.sh -B $DRONE_BRANCH -C $DRONE_COMMIT -P $DRONE_PULL_REQUEST -t 117641e2-a9e8-4b7b-984b-ae872d9b05f5 -f tests/autotest-external-clover-sqlite-smb-linux.xml; fi"
- sh -c "if [ '$DRONE_BUILD_EVENT' != 'pull_request' ]; then bash codecov.sh -B $DRONE_BRANCH -C $DRONE_COMMIT -t 117641e2-a9e8-4b7b-984b-ae872d9b05f5 -f tests/autotest-external-clover-sqlite-smb-linux.xml; fi"
- name: sqlite-php7.0-samba-non-native
image: nextcloudci/samba-non-native-php7.1:1
commands:
- smbd -D -FS &
- ./autotest-external.sh sqlite smb-linux
- wget https://codecov.io/bash -O codecov.sh
- sh -c "if [ '$DRONE_BUILD_EVENT' = 'pull_request' ]; then bash codecov.sh -B $DRONE_BRANCH -C $DRONE_COMMIT -P $DRONE_PULL_REQUEST -t 117641e2-a9e8-4b7b-984b-ae872d9b05f5 -f tests/autotest-external-clover-sqlite.xml; fi"
- sh -c "if [ '$DRONE_BUILD_EVENT' != 'pull_request' ]; then bash codecov.sh -B $DRONE_BRANCH -C $DRONE_COMMIT -t 117641e2-a9e8-4b7b-984b-ae872d9b05f5 -f tests/autotest-external-clover-sqlite.xml; fi"
- sh -c "if [ '$DRONE_BUILD_EVENT' = 'pull_request' ]; then bash codecov.sh -B $DRONE_BRANCH -C $DRONE_COMMIT -P $DRONE_PULL_REQUEST -t 117641e2-a9e8-4b7b-984b-ae872d9b05f5 -f tests/autotest-external-clover-sqlite-smb-linux.xml; fi"
- sh -c "if [ '$DRONE_BUILD_EVENT' != 'pull_request' ]; then bash codecov.sh -B $DRONE_BRANCH -C $DRONE_COMMIT -t 117641e2-a9e8-4b7b-984b-ae872d9b05f5 -f tests/autotest-external-clover-sqlite-smb-linux.xml; fi"
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: sqlite-php7.1-webdav-apache
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: sqlite-php7.0-webdav-apache
image: nextcloudci/webdav-apache-php7.1:1
commands:
- apache2
- ./autotest-external.sh sqlite webdav-apachedrone
- wget https://codecov.io/bash -O codecov.sh
- sh -c "if [ '$DRONE_BUILD_EVENT' = 'pull_request' ]; then bash codecov.sh -B $DRONE_BRANCH -C $DRONE_COMMIT -P $DRONE_PULL_REQUEST -t 117641e2-a9e8-4b7b-984b-ae872d9b05f5 -f tests/autotest-external-clover-sqlite.xml; fi"
- sh -c "if [ '$DRONE_BUILD_EVENT' != 'pull_request' ]; then bash codecov.sh -B $DRONE_BRANCH -C $DRONE_COMMIT -t 117641e2-a9e8-4b7b-984b-ae872d9b05f5 -f tests/autotest-external-clover-sqlite.xml; fi"
- sh -c "if [ '$DRONE_BUILD_EVENT' = 'pull_request' ]; then bash codecov.sh -B $DRONE_BRANCH -C $DRONE_COMMIT -P $DRONE_PULL_REQUEST -t 117641e2-a9e8-4b7b-984b-ae872d9b05f5 -f tests/autotest-external-clover-sqlite-webdav-apachedrone.xml; fi"
- sh -c "if [ '$DRONE_BUILD_EVENT' != 'pull_request' ]; then bash codecov.sh -B $DRONE_BRANCH -C $DRONE_COMMIT -t 117641e2-a9e8-4b7b-984b-ae872d9b05f5 -f tests/autotest-external-clover-sqlite-webdav-apachedrone.xml; fi"
services:
- name: cache
image: redis
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: nodb
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: nodb-php7.1
image: nextcloudci/php7.1:php7.1-16
commands:
- NOCOVERAGE=true TEST_SELECTION=NODB ./autotest.sh sqlite
- name: nodb-php7.2
image: nextcloudci/php7.2:php7.2-11
commands:
- NOCOVERAGE=true TEST_SELECTION=NODB ./autotest.sh sqlite
- name: nodb-php7.3
image: nextcloudci/php7.3:php7.3-1
commands:
- NOCOVERAGE=true TEST_SELECTION=NODB ./autotest.sh sqlite
services:
- name: cache
image: redis
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: sqlite
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: sqlite-php7.1
image: nextcloudci/php7.1:php7.1-16
commands:
- NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh sqlite
- name: sqlite-php7.2
image: nextcloudci/php7.2:php7.2-12
commands:
- NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh sqlite
- name: sqlite-php7.3
image: nextcloudci/php7.3:php7.3-1
commands:
- NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh sqlite
services:
- name: cache
image: redis
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: mariadb10.0-php7.1
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: mariadb10.0-php7.1
image: nextcloudci/php7.1:php7.1-16
commands:
- NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh mariadb
services:
- name: cache
image: redis
- name: mariadb
image: mariadb:10.0
environment:
MYSQL_ROOT_PASSWORD: owncloud
MYSQL_USER: oc_autotest
MYSQL_PASSWORD: owncloud
MYSQL_DATABASE: oc_autotest
tmpfs:
- /var/lib/mysql
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: mariadb10.1-php7.1
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: mariadb10.1-php7.1
image: nextcloudci/php7.1:php7.1-16
commands:
- NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh mariadb
services:
- name: cache
image: redis
- name: mariadb
image: mariadb:10.1
environment:
MYSQL_ROOT_PASSWORD: owncloud
MYSQL_USER: oc_autotest
MYSQL_PASSWORD: owncloud
MYSQL_DATABASE: oc_autotest
tmpfs:
- /var/lib/mysql
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: mariadb10.2-php7.1
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: mariadb10.2-php7.1
image: nextcloudci/php7.1:php7.1-16
commands:
- NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh mariadb
services:
- name: cache
image: redis
- name: mariadb
image: mariadb:10.2
environment:
MYSQL_ROOT_PASSWORD: owncloud
MYSQL_USER: oc_autotest
MYSQL_PASSWORD: owncloud
MYSQL_DATABASE: oc_autotest
tmpfs:
- /var/lib/mysql
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: mariadb10.3-php7.1
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: mariadb10.3-php7.1
image: nextcloudci/php7.1:php7.1-16
commands:
- NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh mariadb
services:
- name: cache
image: redis
- name: mariadb
image: mariadb:10.3
environment:
MYSQL_ROOT_PASSWORD: owncloud
MYSQL_USER: oc_autotest
MYSQL_PASSWORD: owncloud
MYSQL_DATABASE: oc_autotest
tmpfs:
- /var/lib/mysql
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: mariadb10.4-php7.1
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: mariadb10.4-php7.1
image: nextcloudci/php7.1:php7.1-16
commands:
- NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh mariadb
services:
- name: cache
image: redis
- name: mariadb
image: mariadb:10.4
environment:
MYSQL_ROOT_PASSWORD: owncloud
MYSQL_USER: oc_autotest
MYSQL_PASSWORD: owncloud
MYSQL_DATABASE: oc_autotest
tmpfs:
- /var/lib/mysql
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: mysql8.0-php7.1
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: mysql-php7.1
image: nextcloudci/php7.1:php7.1-16
commands:
- NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh mysql
services:
- name: cache
image: redis
- name: mysql
image: mysql:8.0
command: [ "--default-authentication-plugin=mysql_native_password" ]
environment:
MYSQL_ROOT_PASSWORD: owncloud
MYSQL_USER: oc_autotest
MYSQL_PASSWORD: owncloud
MYSQL_DATABASE: oc_autotest
tmpfs:
- /var/lib/mysql
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: mysql5.7-php7.1
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: mysql-php7.1
image: nextcloudci/php7.1:php7.1-16
commands:
- NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh mysql
services:
- name: cache
image: redis
- name: mysql
image: mysql:5.7
environment:
MYSQL_ROOT_PASSWORD: owncloud
MYSQL_USER: oc_autotest
MYSQL_PASSWORD: owncloud
MYSQL_DATABASE: oc_autotest
tmpfs:
- /var/lib/mysql
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: mysql5.7-php7.2
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: mysql-php7.2
image: nextcloudci/php7.2:php7.2-12
commands:
- NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh mysql
services:
- name: mysql
image: mysql:5.7
environment:
MYSQL_ROOT_PASSWORD: owncloud
MYSQL_USER: oc_autotest
MYSQL_PASSWORD: owncloud
MYSQL_DATABASE: oc_autotest
tmpfs:
- /var/lib/mysql
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: mysql5.7-php7.3
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: mysql-php7.3
image: nextcloudci/php7.3:php7.3-1
commands:
- NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh mysql
services:
- name: mysql
image: mysql:5.7
environment:
MYSQL_ROOT_PASSWORD: owncloud
MYSQL_USER: oc_autotest
MYSQL_PASSWORD: owncloud
MYSQL_DATABASE: oc_autotest
tmpfs:
- /var/lib/mysql
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: mysql5.6-php7.1
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: mysql5.6-php7.1
image: nextcloudci/php7.1:php7.1-16
commands:
- NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh mysql
services:
- name: cache
image: redis
- name: mysql
image: mysql:5.6
environment:
MYSQL_ROOT_PASSWORD: owncloud
MYSQL_USER: oc_autotest
MYSQL_PASSWORD: owncloud
MYSQL_DATABASE: oc_autotest
tmpfs:
- /var/lib/mysql
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: mysql5.5-php7.1
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: mysql5.5-php7.1
image: nextcloudci/php7.1:php7.1-16
commands:
- NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh mysql
services:
- name: cache
image: redis
- name: mysql
image: mysql:5.5
environment:
MYSQL_ROOT_PASSWORD: owncloud
MYSQL_USER: oc_autotest
MYSQL_PASSWORD: owncloud
MYSQL_DATABASE: oc_autotest
tmpfs:
- /var/lib/mysql
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: postgres9-php7.1
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: postgres-php7.1
image: nextcloudci/php7.1:php7.1-16
commands:
- sleep 10 # gives the database enough time to initialize
- POSTGRES=9 NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh pgsql
services:
- name: cache
image: redis
- name: postgres-9
image: postgres:9
environment:
POSTGRES_USER: oc_autotest
POSTGRES_DB: oc_autotest_dummy
POSTGRES_PASSWORD: owncloud
tmpfs:
- /var/lib/postgresql/data
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: postgres10-php7.1
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: postgres-php7.1
image: nextcloudci/php7.1:php7.1-16
commands:
- sleep 10 # gives the database enough time to initialize
- POSTGRES=10 NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh pgsql
services:
- name: cache
image: redis
- name: postgres-10
image: postgres:10
environment:
POSTGRES_USER: oc_autotest
POSTGRES_DB: oc_autotest_dummy
POSTGRES_PASSWORD: owncloud
tmpfs:
- /var/lib/postgresql/data
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: postgres11-php7.1
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: postgres-php7.1
image: nextcloudci/php7.1:php7.1-16
commands:
- sleep 10 # gives the database enough time to initialize
- POSTGRES=11 NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh pgsql
services:
- name: cache
image: redis
- name: postgres-11
image: postgres:11
environment:
POSTGRES_USER: oc_autotest
POSTGRES_DB: oc_autotest_dummy
POSTGRES_PASSWORD: owncloud
tmpfs:
- /var/lib/postgresql/data
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: mysqlmb4-php7.1
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: mysqlmb4-php7.1
image: nextcloudci/php7.1:php7.1-16
commands:
- NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh mysqlmb4
services:
- name: cache
image: redis
- name: mysqlmb4
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: mysqlmb4-php7.2
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: mysqlmb4-php7.2
image: nextcloudci/php7.2:php7.2-12
commands:
- NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh mysqlmb4
services:
- name: cache
image: redis
- name: mysqlmb4
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: mysqlmb4-php7.3
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: mysqlmb4-php7.3
image: nextcloudci/php7.3:php7.3-1
commands:
- NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh mysqlmb4
services:
- name: cache
image: redis
- name: mysqlmb4
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: integration-capabilities_features
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: integration-capabilities_features
image: nextcloudci/integration-php7.1:1
commands:
- ./occ maintenance:install --admin-pass=admin --data-dir=/dev/shm/nc_int
- cd build/integration
- ./run.sh capabilities_features/capabilities.feature
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: integration-federation_features
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: integration-federation_features
image: nextcloudci/integration-php7.1:1
commands:
- ./occ maintenance:install --admin-pass=admin
- cd build/integration
- ./run.sh federation_features/federated.feature
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: integration-auth
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: integration-auth
image: nextcloudci/integration-php7.1:1
commands:
- ./occ maintenance:install --admin-pass=admin --data-dir=/dev/shm/nc_int
- cd build/integration
- ./run.sh features/auth.feature
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: integration-maintenance-mode
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: integration-maintenance-mode
image: nextcloudci/integration-php7.1:1
commands:
- ./occ maintenance:install --admin-pass=admin --data-dir=/dev/shm/nc_int
- cd build/integration
- ./run.sh features/maintenance-mode.feature
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: integration-ratelimiting
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: integration-ratelimiting
image: nextcloudci/integration-php7.1:1
commands:
- ./occ maintenance:install --admin-pass=admin --data-dir=/dev/shm/nc_int
- ./occ config:system:set redis host --value=cache
- ./occ config:system:set redis port --value=6379 --type=integer
- ./occ config:system:set redis timeout --value=0 --type=integer
- ./occ config:system:set --type string --value "\\OC\\Memcache\\Redis" memcache.local
- ./occ config:system:set --type string --value "\\OC\\Memcache\\Redis" memcache.distributed
- ./occ app:enable testing
- cd build/integration
- ./run.sh features/ratelimiting.feature
services:
- name: cache
image: redis
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: integration-carddav
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: integration-carddav
image: nextcloudci/integration-php7.1:1
commands:
- ./occ maintenance:install --admin-pass=admin --data-dir=/dev/shm/nc_int
- cd build/integration
- ./run.sh features/carddav.feature
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: integration-dav-v2
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: integration-dav-v2
image: nextcloudci/integration-php7.1:1
commands:
- ./occ maintenance:install --admin-pass=admin --data-dir=/dev/shm/nc_int
- cd build/integration
- ./run.sh features/dav-v2.feature
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: integration-ocs-v1
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: integration-ocs-v1
image: nextcloudci/integration-php7.1:1
commands:
- ./occ maintenance:install --admin-pass=admin --data-dir=/dev/shm/nc_int
- cd build/integration
- ./run.sh features/ocs-v1.feature
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: integration-sharing-v1
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: integration-sharing-v1
image: nextcloudci/integration-php7.1:1
commands:
- ./occ maintenance:install --admin-pass=admin --data-dir=/dev/shm/nc_int
- cd build/integration
- ./run.sh features/sharing-v1.feature
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: integration-sharing-v1-part2
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: integration-sharing-v1-part2
image: nextcloudci/integration-php7.1:1
commands:
- ./occ maintenance:install --admin-pass=admin --data-dir=/dev/shm/nc_int
- cd build/integration
- ./run.sh features/sharing-v1-part2.feature
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: integration-sharing-v1-part3
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: integration-sharing-v1-part3
image: nextcloudci/integration-php7.1:1
commands:
- ./occ maintenance:install --admin-pass=admin --data-dir=/dev/shm/nc_int
- cd build/integration
- ./run.sh features/sharing-v1-part3.feature
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: integration-checksums-v1
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: integration-checksums-v1
image: nextcloudci/integration-php7.1:1
commands:
- ./occ maintenance:install --admin-pass=admin --data-dir=/dev/shm/nc_int
- cd build/integration
- ./run.sh features/checksums.feature
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: integration-external-storage
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: integration-external-storage
image: nextcloudci/integration-php7.1:1
commands:
- ./occ maintenance:install --admin-pass=admin --data-dir=/dev/shm/nc_int
- cd build/integration
- ./run.sh features/external-storage.feature
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: integration-provisioning-v1
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: integration-provisioning-v1
image: nextcloudci/integration-php7.1:1
commands:
- ./occ maintenance:install --admin-pass=admin --data-dir=/dev/shm/nc_int
- cd build/integration
- ./run.sh features/provisioning-v1.feature
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: integration-tags
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: integration-tags
image: nextcloudci/integration-php7.1:1
commands:
- ./occ maintenance:install --admin-pass=admin --data-dir=/dev/shm/nc_int
- cd build/integration
- ./run.sh features/tags.feature
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: integration-caldav
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: integration-caldav
image: nextcloudci/integration-php7.1:1
commands:
- ./occ maintenance:install --admin-pass=admin --data-dir=/dev/shm/nc_int
- cd build/integration
- ./run.sh features/caldav.feature
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: integration-comments
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: integration-comments
image: nextcloudci/integration-php7.1:1
commands:
- ./occ maintenance:install --admin-pass=admin --data-dir=/dev/shm/nc_int
- cd build/integration
- ./run.sh features/comments.feature
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: integration-comments-search
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: integration-comments-search
image: nextcloudci/integration-php7.1:1
commands:
- ./occ maintenance:install --admin-pass=admin --data-dir=/dev/shm/nc_int
- cd build/integration
- ./run.sh features/comments-search.feature
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: integration-favorites
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: integration-favorites
image: nextcloudci/integration-php7.1:1
commands:
- ./occ maintenance:install --admin-pass=admin --data-dir=/dev/shm/nc_int
- cd build/integration
- ./run.sh features/favorites.feature
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: integration-provisioning-v2
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: integration-provisioning-v2
image: nextcloudci/integration-php7.1:1
commands:
- ./occ maintenance:install --admin-pass=admin --data-dir=/dev/shm/nc_int
- cd build/integration
- ./run.sh features/provisioning-v2.feature
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: integration-webdav-related
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: integration-webdav-related
image: nextcloudci/integration-php7.1:1
commands:
- ./occ maintenance:install --admin-pass=admin --data-dir=/dev/shm/nc_int
- cd build/integration
- ./run.sh features/webdav-related.feature
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: integration-sharees-features
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: integration-sharees-features
image: nextcloudci/integration-php7.1:1
commands:
- ./occ maintenance:install --admin-pass=admin --data-dir=/dev/shm/nc_int
- cd build/integration
- ./run.sh sharees_features/sharees.feature
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: integration-sharees-v2-features
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: integration-sharees-v2-features
image: nextcloudci/integration-php7.1:1
commands:
- ./occ maintenance:install --admin-pass=admin --data-dir=/dev/shm/nc_int
- cd build/integration
- ./run.sh sharees_features/sharees_provisioningapiv2.feature
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: integration-setup-features
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: integration-setup-features
image: nextcloudci/integration-php7.1:1
commands:
- cd build/integration
- ./run.sh setup_features/setup.feature
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: integration-filesdrop-features
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: integration-filesdrop-features
image: nextcloudci/integration-php7.1:1
commands:
- ./occ maintenance:install --admin-pass=admin --data-dir=/dev/shm/nc_int
- cd build/integration
- ./run.sh filesdrop_features/filesdrop.feature
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: integration-transfer-ownership-features
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: integration-transfer-ownership-features
image: nextcloudci/integration-php7.1:1
commands:
- ./occ maintenance:install --admin-pass=admin --data-dir=/dev/shm/nc_int
- cd build/integration
- ./run.sh features/transfer-ownership.feature
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: integration-ldap-features
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: integration-ldap-features
image: nextcloudci/integration-php7.1:1
commands:
- ./occ maintenance:install --admin-pass=admin --data-dir=/dev/shm/nc_int
- cd build/integration
- ./run.sh ldap_features/ldap-ocs.feature
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: integration-ldap-openldap-features
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: integration-ldap-openldap-features
image: nextcloudci/integration-php7.1:1
commands:
- ./occ maintenance:install --admin-pass=admin --data-dir=/dev/shm/nc_int
- ./occ config:system:set redis host --value=cache
- ./occ config:system:set redis port --value=6379 --type=integer
- ./occ config:system:set redis timeout --value=0 --type=integer
- ./occ config:system:set --type string --value "\\OC\\Memcache\\Redis" memcache.local
- ./occ config:system:set --type string --value "\\OC\\Memcache\\Redis" memcache.distributed
- cd build/integration
- ./run.sh ldap_features/ldap-openldap.feature
services:
- name: cache
image: redis
- name: openldap
image: nextcloudci/openldap:openldap-7
environment:
SLAPD_DOMAIN: nextcloud.ci
SLAPD_ORGANIZATION: Nextcloud
SLAPD_PASSWORD: admin
SLAPD_ADDITIONAL_MODULES: memberof
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: integration-ldap-openldap-uid-features
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: integration-ldap-openldap-uid-features
image: nextcloudci/integration-php7.1:1
commands:
- ./occ maintenance:install --admin-pass=admin --data-dir=/dev/shm/nc_int
- ./occ config:system:set redis host --value=cache
- ./occ config:system:set redis port --value=6379 --type=integer
- ./occ config:system:set redis timeout --value=0 --type=integer
- ./occ config:system:set --type string --value "\\OC\\Memcache\\Redis" memcache.local
- ./occ config:system:set --type string --value "\\OC\\Memcache\\Redis" memcache.distributed
- cd build/integration
- ./run.sh ldap_features/openldap-uid-username.feature
services:
- name: cache
image: redis
- name: openldap
image: nextcloudci/openldap:openldap-7
environment:
SLAPD_DOMAIN: nextcloud.ci
SLAPD_ORGANIZATION: Nextcloud
SLAPD_PASSWORD: admin
SLAPD_ADDITIONAL_MODULES: memberof
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: integration-ldap-openldap-numerical-id-features
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: integration-ldap-openldap-numerical-id-features
image: nextcloudci/integration-php7.1:1
commands:
- ./occ maintenance:install --admin-pass=admin --data-dir=/dev/shm/nc_int
- ./occ config:system:set redis host --value=cache
- ./occ config:system:set redis port --value=6379 --type=integer
- ./occ config:system:set redis timeout --value=0 --type=integer
- ./occ config:system:set --type string --value "\\OC\\Memcache\\Redis" memcache.local
- ./occ config:system:set --type string --value "\\OC\\Memcache\\Redis" memcache.distributed
- cd build/integration
- ./run.sh ldap_features/openldap-numerical-id.feature
services:
- name: cache
image: redis
- name: openldap
image: nextcloudci/openldap:openldap-7
environment:
SLAPD_DOMAIN: nextcloud.ci
SLAPD_ORGANIZATION: Nextcloud
SLAPD_PASSWORD: admin
SLAPD_ADDITIONAL_MODULES: memberof
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: integration-trashbin
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: integration-trashbin
image: nextcloudci/integration-php7.1:1
commands:
- ./occ maintenance:install --admin-pass=admin --data-dir=/dev/shm/nc_int
- cd build/integration
- ./run.sh features/trashbin.feature
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: integration-remote-api
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: integration-remote-api
image: nextcloudci/integration-php7.1:1
commands:
- ./occ maintenance:install --admin-pass=admin --data-dir=/dev/shm/nc_int
- cd build/integration
- ./run.sh remoteapi_features/remote.feature
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: integration-download
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: integration-download
image: nextcloudci/integration-php7.1:1
commands:
- ./occ maintenance:install --admin-pass=admin --data-dir=/dev/shm/nc_int
- cd build/integration
- ./run.sh --tags ~@large features/download.feature
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: acceptance-access-levels
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: acceptance-access-levels
image: nextcloudci/acceptance-php7.1:acceptance-php7.1-2
commands:
- tests/acceptance/run-local.sh --timeout-multiplier 10 --nextcloud-server-domain acceptance-access-levels --selenium-server selenium:4444 allow-git-repository-modifications features/access-levels.feature
services:
- name: selenium
image: selenium/standalone-firefox:2.53.1-beryllium
environment:
# Reduce default log level for Selenium server (INFO) as it is too
# verbose.
JAVA_OPTS: -Dselenium.LOGGER.level=WARNING
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: acceptance-app-comments
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: acceptance-app-comments
image: nextcloudci/acceptance-php7.1:acceptance-php7.1-2
commands:
- tests/acceptance/run-local.sh --timeout-multiplier 10 --nextcloud-server-domain acceptance-app-comments --selenium-server selenium:4444 allow-git-repository-modifications features/app-comments.feature
services:
- name: selenium
image: selenium/standalone-firefox:2.53.1-beryllium
environment:
# Reduce default log level for Selenium server (INFO) as it is too
# verbose.
JAVA_OPTS: -Dselenium.LOGGER.level=WARNING
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: acceptance-app-files
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: acceptance-app-files
image: nextcloudci/acceptance-php7.1:acceptance-php7.1-2
commands:
- tests/acceptance/run-local.sh --timeout-multiplier 10 --nextcloud-server-domain acceptance-app-files --selenium-server selenium:4444 allow-git-repository-modifications features/app-files.feature
services:
- name: selenium
image: selenium/standalone-firefox:2.53.1-beryllium
environment:
# Reduce default log level for Selenium server (INFO) as it is too
# verbose.
JAVA_OPTS: -Dselenium.LOGGER.level=WARNING
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: acceptance-app-files-sharing
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: acceptance-app-files-sharing
image: nextcloudci/acceptance-php7.1:acceptance-php7.1-2
commands:
- tests/acceptance/run-local.sh --timeout-multiplier 10 --nextcloud-server-domain acceptance-app-files-sharing --selenium-server selenium:4444 allow-git-repository-modifications features/app-files-sharing.feature
services:
- name: selenium
image: selenium/standalone-firefox:2.53.1-beryllium
environment:
# Reduce default log level for Selenium server (INFO) as it is too
# verbose.
JAVA_OPTS: -Dselenium.LOGGER.level=WARNING
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: acceptance-app-files-sharing-link
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: acceptance-app-files-sharing-link
image: nextcloudci/acceptance-php7.1:acceptance-php7.1-2
commands:
- tests/acceptance/run-local.sh --timeout-multiplier 10 --nextcloud-server-domain acceptance-app-files-sharing-link --selenium-server selenium:4444 allow-git-repository-modifications features/app-files-sharing-link.feature
services:
- name: selenium
image: selenium/standalone-firefox:2.53.1-beryllium
environment:
# Reduce default log level for Selenium server (INFO) as it is too
# verbose.
JAVA_OPTS: -Dselenium.LOGGER.level=WARNING
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: acceptance-app-files-tags
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: acceptance-app-files-tags
image: nextcloudci/acceptance-php7.1:acceptance-php7.1-2
commands:
- tests/acceptance/run-local.sh --timeout-multiplier 10 --nextcloud-server-domain acceptance-app-files-tags --selenium-server selenium:4444 allow-git-repository-modifications features/app-files-tags.feature
services:
- name: selenium
image: selenium/standalone-firefox:2.53.1-beryllium
environment:
# Reduce default log level for Selenium server (INFO) as it is too
# verbose.
JAVA_OPTS: -Dselenium.LOGGER.level=WARNING
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: acceptance-app-theming
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: acceptance-app-theming
image: nextcloudci/acceptance-php7.1:acceptance-php7.1-2
commands:
- tests/acceptance/run-local.sh --timeout-multiplier 10 --nextcloud-server-domain acceptance-app-theming --selenium-server selenium:4444 allow-git-repository-modifications features/app-theming.feature
services:
- name: selenium
image: selenium/standalone-firefox:2.53.1-beryllium
environment:
# Reduce default log level for Selenium server (INFO) as it is too
# verbose.
JAVA_OPTS: -Dselenium.LOGGER.level=WARNING
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: acceptance-header
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: acceptance-header
image: nextcloudci/acceptance-php7.1:acceptance-php7.1-2
commands:
- tests/acceptance/run-local.sh --timeout-multiplier 10 --nextcloud-server-domain acceptance-header --selenium-server selenium:4444 allow-git-repository-modifications features/header.feature
services:
- name: selenium
image: selenium/standalone-firefox:2.53.1-beryllium
environment:
# Reduce default log level for Selenium server (INFO) as it is too
# verbose.
JAVA_OPTS: -Dselenium.LOGGER.level=WARNING
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: acceptance-login
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: acceptance-login
image: nextcloudci/acceptance-php7.1:acceptance-php7.1-2
commands:
- tests/acceptance/run-local.sh --timeout-multiplier 10 --nextcloud-server-domain acceptance-login --selenium-server selenium:4444 allow-git-repository-modifications features/login.feature
services:
- name: selenium
image: selenium/standalone-firefox:2.53.1-beryllium
environment:
# Reduce default log level for Selenium server (INFO) as it is too
# verbose.
JAVA_OPTS: -Dselenium.LOGGER.level=WARNING
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: acceptance-users
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: acceptance-users
image: nextcloudci/acceptance-php7.1:acceptance-php7.1-2
commands:
- tests/acceptance/run-local.sh --timeout-multiplier 10 --nextcloud-server-domain acceptance-users --selenium-server selenium:4444 allow-git-repository-modifications features/users.feature
services:
- name: selenium
image: selenium/standalone-firefox:2.53.1-beryllium
environment:
# Reduce default log level for Selenium server (INFO) as it is too
# verbose.
JAVA_OPTS: -Dselenium.LOGGER.level=WARNING
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: acceptance-apps
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: acceptance-apps
image: nextcloudci/acceptance-php7.1:acceptance-php7.1-2
commands:
- tests/acceptance/run-local.sh --timeout-multiplier 10 --nextcloud-server-domain acceptance-apps --selenium-server selenium:4444 allow-git-repository-modifications features/apps.feature
services:
- name: selenium
image: selenium/standalone-firefox:2.53.1-beryllium
environment:
# Reduce default log level for Selenium server (INFO) as it is too
# verbose.
JAVA_OPTS: -Dselenium.LOGGER.level=WARNING
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: nodb-codecov
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: nodb-codecov
image: nextcloudci/php7.1:php7.1-16
commands:
- phpenmod xdebug
- TEST_SELECTION=NODB ./autotest.sh sqlite
- wget https://codecov.io/bash -O codecov.sh
- sh -c "if [ '$DRONE_BUILD_EVENT' = 'pull_request' ]; then bash codecov.sh -B $DRONE_BRANCH -C $DRONE_COMMIT -P $DRONE_PULL_REQUEST -t 117641e2-a9e8-4b7b-984b-ae872d9b05f5 -f tests/autotest-clover-sqlite.xml; fi"
- sh -c "if [ '$DRONE_BUILD_EVENT' != 'pull_request' ]; then bash codecov.sh -B $DRONE_BRANCH -C $DRONE_COMMIT -t 117641e2-a9e8-4b7b-984b-ae872d9b05f5 -f tests/autotest-clover-sqlite.xml; fi"
services:
- name: cache
image: redis
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: db-codecov
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: db-codecov
image: nextcloudci/php7.1:php7.1-16
commands:
- phpenmod xdebug
- TEST_SELECTION=QUICKDB ./autotest.sh sqlite
- wget https://codecov.io/bash -O codecov.sh
- sh -c "if [ '$DRONE_BUILD_EVENT' = 'pull_request' ]; then bash codecov.sh -B $DRONE_BRANCH -C $DRONE_COMMIT -P $DRONE_PULL_REQUEST -t 117641e2-a9e8-4b7b-984b-ae872d9b05f5 -f tests/autotest-clover-sqlite.xml; fi"
- sh -c "if [ '$DRONE_BUILD_EVENT' != 'pull_request' ]; then bash codecov.sh -B $DRONE_BRANCH -C $DRONE_COMMIT -t 117641e2-a9e8-4b7b-984b-ae872d9b05f5 -f tests/autotest-clover-sqlite.xml; fi"
services:
- name: cache
image: redis
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: object-store-s3
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: object-store
image: nextcloudci/php7.1:php7.1-16
commands:
- phpenmod xdebug
- ./tests/drone-wait-objectstore.sh
- TEST_SELECTION=PRIMARY-s3 ./autotest.sh sqlite
- wget https://codecov.io/bash -O codecov.sh
- sh -c "if [ '$DRONE_BUILD_EVENT' = 'pull_request' ]; then bash codecov.sh -B $DRONE_BRANCH -C $DRONE_COMMIT -P $DRONE_PULL_REQUEST -t 117641e2-a9e8-4b7b-984b-ae872d9b05f5 -f tests/autotest-clover-sqlite.xml; fi"
- sh -c "if [ '$DRONE_BUILD_EVENT' != 'pull_request' ]; then bash codecov.sh -B $DRONE_BRANCH -C $DRONE_COMMIT -t 117641e2-a9e8-4b7b-984b-ae872d9b05f5 -f tests/autotest-clover-sqlite.xml; fi"
services:
- name: fake-s3
image: lphoward/fake-s3:latest
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: object-store-azure
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: object-store
image: nextcloudci/php7.1:php7.1-16
commands:
- phpenmod xdebug
- ./tests/drone-wait-objectstore.sh
- TEST_SELECTION=PRIMARY-azure ./autotest.sh sqlite
- wget https://codecov.io/bash -O codecov.sh
- sh -c "if [ '$DRONE_BUILD_EVENT' = 'pull_request' ]; then bash codecov.sh -B $DRONE_BRANCH -C $DRONE_COMMIT -P $DRONE_PULL_REQUEST -t 117641e2-a9e8-4b7b-984b-ae872d9b05f5 -f tests/autotest-clover-sqlite.xml; fi"
- sh -c "if [ '$DRONE_BUILD_EVENT' != 'pull_request' ]; then bash codecov.sh -B $DRONE_BRANCH -C $DRONE_COMMIT -t 117641e2-a9e8-4b7b-984b-ae872d9b05f5 -f tests/autotest-clover-sqlite.xml; fi"
services:
- name: azurite
image: arafato/azurite:latest
environment:
executable: blob
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
#kind: pipeline
#name: object-store-swift-v2
#
#clone:
# depth: 1
#
#steps:
#- name: submodules
# image: docker:git
# commands:
# - git submodule update --init
#- name: object-store
# image: nextcloudci/php7.1:php7.1-16
# commands:
# - phpenmod xdebug
# - ./tests/drone-wait-objectstore.sh
# - TEST_SELECTION=PRIMARY-${OBJECT_STORE} ./autotest.sh sqlite
# - wget https://codecov.io/bash -O codecov.sh
# - sh -c "if [ '$DRONE_BUILD_EVENT' = 'pull_request' ]; then bash codecov.sh -B $DRONE_BRANCH -C $DRONE_COMMIT -P $DRONE_PULL_REQUEST -t 117641e2-a9e8-4b7b-984b-ae872d9b05f5 -f tests/autotest-clover-sqlite.xml; fi"
# - sh -c "if [ '$DRONE_BUILD_EVENT' != 'pull_request' ]; then bash codecov.sh -B $DRONE_BRANCH -C $DRONE_COMMIT -t 117641e2-a9e8-4b7b-984b-ae872d9b05f5 -f tests/autotest-clover-sqlite.xml; fi"
#
#services:
#- name: dockswift
# image: icewind1991/dockswift:nextcloud-ci
# environment:
# IPADDRESS: dockswift
#
#trigger:
# branch:
# - master
# - stable*
# event:
# - pull_request
# - push
#
#---
#kind: pipeline
#name: object-store-swift-v3
#
#clone:
# depth: 1
#
#steps:
#- name: submodules
# image: docker:git
# commands:
# - git submodule update --init
#- name: object-store
# image: nextcloudci/php7.1:php7.1-16
# commands:
# - phpenmod xdebug
# - ./tests/drone-wait-objectstore.sh
# - TEST_SELECTION=PRIMARY-${OBJECT_STORE} ./autotest.sh sqlite
# - wget https://codecov.io/bash -O codecov.sh
# - sh -c "if [ '$DRONE_BUILD_EVENT' = 'pull_request' ]; then bash codecov.sh -B $DRONE_BRANCH -C $DRONE_COMMIT -P $DRONE_PULL_REQUEST -t 117641e2-a9e8-4b7b-984b-ae872d9b05f5 -f tests/autotest-clover-sqlite.xml; fi"
# - sh -c "if [ '$DRONE_BUILD_EVENT' != 'pull_request' ]; then bash codecov.sh -B $DRONE_BRANCH -C $DRONE_COMMIT -t 117641e2-a9e8-4b7b-984b-ae872d9b05f5 -f tests/autotest-clover-sqlite.xml; fi"
#
#services:
#- name: dockswift
# image: icewind1991/dockswift:nextcloud-ci
# environment:
# IPADDRESS: dockswift
#
#trigger:
# branch:
# - master
# - stable*
# event:
# - pull_request
# - push
#
#---
kind: pipeline
name: memcache-memcached
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: memcache-memcached
image: nextcloudci/php7.1-memcached:1
commands:
- phpenmod xdebug
- service memcached restart
- ./autotest.sh sqlite tests/lib/Memcache/MemcachedTest.php
- wget https://codecov.io/bash -O codecov.sh
- sh -c "if [ '$DRONE_BUILD_EVENT' = 'pull_request' ]; then bash codecov.sh -B $DRONE_BRANCH -C $DRONE_COMMIT -P $DRONE_PULL_REQUEST -t 117641e2-a9e8-4b7b-984b-ae872d9b05f5 -f tests/autotest-clover-sqlite.xml; fi"
- sh -c "if [ '$DRONE_BUILD_EVENT' != 'pull_request' ]; then bash codecov.sh -B $DRONE_BRANCH -C $DRONE_COMMIT -t 117641e2-a9e8-4b7b-984b-ae872d9b05f5 -f tests/autotest-clover-sqlite.xml; fi"
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: memcache-redis-cluster
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: memcache-redis-cluster
image: nextcloudci/php7.1:php7.1-16
commands:
- phpenmod xdebug
- sleep 20
- ./autotest.sh sqlite tests/lib/Memcache/RedisTest.php
- wget https://codecov.io/bash -O codecov.sh
- sh -c "if [ '$DRONE_BUILD_EVENT' = 'pull_request' ]; then bash codecov.sh -B $DRONE_BRANCH -C $DRONE_COMMIT -P $DRONE_PULL_REQUEST -t 117641e2-a9e8-4b7b-984b-ae872d9b05f5 -f tests/autotest-clover-sqlite.xml; fi"
- sh -c "if [ '$DRONE_BUILD_EVENT' != 'pull_request' ]; then bash codecov.sh -B $DRONE_BRANCH -C $DRONE_COMMIT -t 117641e2-a9e8-4b7b-984b-ae872d9b05f5 -f tests/autotest-clover-sqlite.xml; fi"
services:
- name: cache-cluster
image: morrisjobke/redis-cluster
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: ui-regression
steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: ui-regression
image: nextcloudci/ui-regression:ui-regression-1
commands:
- cd tests/ui-regression
- npm install
- chown -R pptruser out node_modules
- bash -c "until curl -s http://ui-regression-php-master > /dev/null && curl -s http://ui-regression-php > /dev/null; do sleep 2; done"
- sudo -u pptruser node runTests.js || true
- echo "The result can be found at https://s3.bitgrid.net/nextcloud-ui-regression/nextcloud/server/${DRONE_PULL_REQUEST}/index.html"
shm_size: '1gb'
services:
- name: ui-regression-php
image: nextcloudci/server:server-1
commands:
- . /etc/apache2/envvars
- rm -fr /var/www/html
- mkdir /var/www/html && cp -rT . /var/www/html && chown -R www-data:www-data /var/www/html
- rm -fr /var/www/html/config/config.php /var/www/html/data/*
- apache2 -DFOREGROUND
- name: ui-regression-php-master
image: nextcloudci/server:server-1
commands:
- . /etc/apache2/envvars
- rm -fr /var/www/html/config/config.php /var/www/html/data/*
- su www-data -c "cd /var/www/html/ && git checkout $DRONE_REPO_BRANCH && git pull && git submodule update"
- apache2 -DFOREGROUND
- name: publish-s3
image: plugins/s3
settings:
endpoint: https://ci-assets.nextcloud.com
bucket: nextcloud-ui-regression
path_style: true
source: tests/ui-regression/out/**/*
strip_prefix: tests/ui-regression/out/
acl: public-read
target: ${DRONE_REPO_OWNER}/${DRONE_REPO_NAME}/${DRONE_PULL_REQUEST}
secrets: [ aws_access_key_id, aws_secret_access_key ]
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
ackport/50017/stable29'>backport/50017/stable29
backport/50017/stable30
backport/50025/stable29
backport/50025/stable30
backport/50026/stable29
backport/50026/stable30
backport/50034/stable29
backport/50034/stable30
backport/50035/stable28
backport/50035/stable29
backport/50035/stable30
backport/50046/stable29
backport/50046/stable30
backport/50070/stable29
backport/50070/stable30
backport/50076/stable29
backport/50076/stable30
backport/50111/stable29
backport/50111/stable30
backport/50113/stable29
backport/50113/stable30
backport/50123/master
backport/50123/stable29
backport/50123/stable30
backport/50128/stable29
backport/50128/stable30
backport/50152/stable29
backport/50152/stable30
backport/50154/stable29
backport/50161/stable29
backport/50161/stable30
backport/50177/stable29
backport/50177/stable30
backport/50179/stable30
backport/50187/stable30
backport/50192/stable28
backport/50192/stable29
backport/50192/stable30
backport/50193/stable29
backport/50237/stable29
backport/50241/stable30
backport/cachebuster-stable30
backport/dav-get
backport/fix-files-title
backportArrayKeySetupCheks
block-dav-move-parent
bug/19494/insert-ignore-conflict-for-filecache-extended
bug/48518/ignore-invalid-dates
bug/48678/restore-dav-error-response
bug/49395/handle-multiple-tags
bug/noid/codeowners-caldav-carddav
bug/noid/drop-group-exists-cache-fetch-list-of-groups
bug/noid/federated-addressbook-sync-without-localaddressallowed
bug/noid/more-routing-weirdness
bug/noid/profile-clear-not-working
bug/noid/skip-exceptions-in-transfer-ownership
bug/noid/weird-ldap-caching
bugfix/45481/controller-parameter-overwrite
bugfix/47658/dont-fail-precondition-if-unset
bugfix/cleanup-s3-multipart
bugfix/error-on-reshare-after-transfer-ownership
bugfix/exception-appscreenshot-notstring
bugfix/fix-service-worker-scope
bugfix/noid/add-missing-blurhash
bugfix/noid/allow-ratelimit-bypass
bugfix/noid/allow-to-fail-fake-AI-providers
bugfix/noid/allow-to-force-db-throttler
bugfix/noid/allow-to-get-permissions-of-a-principal
bugfix/noid/array-keys
bugfix/noid/censor-more-values
bugfix/noid/compatibility-with-30
bugfix/noid/consistent-handling-of-SensitiveParameter
bugfix/noid/copy-better-typing-from-notifications-app
bugfix/noid/create-a-gap-before-files
bugfix/noid/document-icon-requirements
bugfix/noid/fix-download-activity-parameters
bugfix/noid/fix-oauth2-owncloud-migration
bugfix/noid/fix-otf-loading
bugfix/noid/fix-rtl-language-list
bugfix/noid/fix-tainted-file-appinfo
bugfix/noid/improve-installation-speed-of-oracle
bugfix/noid/increase-exclude-list
bugfix/noid/mark-more-configs-as-sensitive
bugfix/noid/more-reliable-tests
bugfix/noid/oracle-federation
bugfix/noid/prevent-infitnite-loop
bugfix/noid/remove-3rdparty-use
bugfix/noid/remove-more-withConsecutive
bugfix/noid/run-all-unit-tests
bugfix/noid/skip-future-shipped-apps-from-updatenotification-check
bugfix/noid/update-opendyslexic
bugfix/noid/update-phpunit
bugfix/noid/validate-parameter-keys
bugfix/trim-tags
build/autoloader/remove-noisy-changes
build/psalm/unstable-namespace
build/translation-checker-print-rtl-limited-characters
cache-delete-notfound-size
catchNullHash
certificate-manager-fallback
check-phpoutdated
checkColExists
chore/48408/rename-twitter-to-x
chore/48409/replace-diaspora-and-twitter
chore/add-deprecation-date
chore/cleanup-warnings
chore/deps/nextcloud-calendar-availability-vue-2.2.5
chore/deps/nextcloud-calendar-availability-vue-2.2.6
chore/deps/nextcloud-coding-standard
chore/deps/nextcloud-vue-8.22.0
chore/deps/openapi-extractor
chore/drop-skjnldsv/sanitize-svg
chore/files-consolitate-route-logic
chore/force-style-lint
chore/gender-neutral-language
chore/github/groupware-code-owners-update
chore/lazy-mount-providers
chore/legacy-updatenotification
chore/migrate-encryption-away-from-hooks
chore/migrate-vite
chore/ncselect-label-warning
chore/nextcloud-dialogs
chore/nextcloud-dialogs-master
chore/nextcloud-dialogs-stable29
chore/nextcloud-vue-8.13.0
chore/node-moved-old-node
chore/noid/coverage
chore/noid/git-blame-ignore-revs
chore/prepare-oc_repair-unit10
chore/remove-deprecated-aliases
chore/remove-ijob-execute
chore/remove-ilogger
chore/remove-legacy-files-scripts
chore/remove-legacy-settings-fors
chore/remove-old-test
chore/remove-travis
chore/update-gw-codeowners-2
chore/update-nc-libs-stable29
chore/update-nc-libs-stable30
chore/update-sass-loader
chore/update_mysql_setup_check_i18n
chore/use-nextcloud-cypress-docker-node
chore/use-public-api-helper
ci-fix-30
ci/49145/php-8.4-external-storages
ci/noid/debug-broken-ci
ci/noid/enable-required-php-extensions
ci/noid/improve-running-psalm-locally
ci/noid/php-8.4
ci/noid/prepare-phpunit-10
ci/noid/require-up-to-date-psalm-paseline
ci/noid/skip-other-vendor-bins-when-only-running-psalm
ci/noid/try-to-fix-smb-kerberos
ci/noid/update-integration-test-stuff
ci/oracle
ci/oracle-2
ci/phpunit-10
ci/psalm/imagick-extension
ci/revert/47342
clean/version-ocp
cleanup/event/trashbin
clear-pending-two-factor-tokens-also-from-configuration
clearKeysInBatches
config-carddav-sync-request-timeout
container-optimizations
contctsinteraction-usersetting
copy-share-unmasked
copy-update-cache-excluded
dav-fix-birthday-sync
dav-open-log-path
dav-push-sync
dav-webcal-default-refresh-rate
davTagColor
db-error-logging-27
db-error-logging-28
dbQueriesExecStmt
dbQueriesExecStmt2
dbQueriesExecStmt3
dbQueriesToMaster
debt/noid/ignore-docker-image-lock-file
debt/noid/user-changed-event
debug-cypress-grid-view
debug-file-exists-backtrace
debug/66440/logs-for-debugging-slow-user-list
debug/doctrine/dbal
debug/noid/imaginary
debug/noid/log-ram-usage-with-threshold
debug/noid/log-reason-token-mismatch
debug/noid/log-reason-token-mismatch-stable27
debug/preview-invalid-id
debug/snae
def-share-provider-filecache-joins
deleteExistingTarget
dependabot/composer/aws/aws-sdk-php-3.324.13
dependabot/composer/build/integration/behat/behat-3.17.0
dependabot/composer/build/integration/behat/behat-3.18.1
dependabot/composer/doctrine/dbal-3.9.x
dependabot/composer/doctrine/dbal-4.0.4
dependabot/composer/giggsey/libphonenumber-for-php-lite-8.13.45
dependabot/composer/giggsey/libphonenumber-for-php-lite-8.13.48
dependabot/composer/guzzlehttp/guzzle-7.9.2
dependabot/composer/laravel/serializable-closure-1.3.5
dependabot/composer/mlocati/ip-lib-1.18.1
dependabot/composer/sabre/dav-4.7.0
dependabot/composer/stable28/aws/aws-sdk-php-3.240.11
dependabot/composer/stable30/doctrine/dbal-3.9.1
dependabot/composer/stable30/giggsey/libphonenumber-for-php-lite-8.13.45
dependabot/composer/stable30/guzzlehttp/guzzle-7.8.2
dependabot/composer/stable30/laravel/serializable-closure-1.3.5
dependabot/composer/stable30/symfony-6.4
dependabot/composer/stable30/web-auth/webauthn-lib-4.8.7
dependabot/composer/symfony-6.4
dependabot/composer/symfony/string-6.4.13
dependabot/composer/vendor-bin/cs-fixer/nextcloud/coding-standard-1.3.0
dependabot/composer/vendor-bin/cs-fixer/nextcloud/coding-standard-1.3.2
dependabot/composer/vendor-bin/openapi-extractor/nextcloud/openapi-extractor-1.0.1
dependabot/composer/vendor-bin/openapi-extractor/nextcloud/openapi-extractor-1.1.0
dependabot/composer/vendor-bin/openapi-extractor/nextcloud/openapi-extractor-1.2.2
dependabot/composer/vendor-bin/openapi-extractor/nextcloud/openapi-extractor-1.3.0
dependabot/composer/web-auth/webauthn-lib-4.9.1
dependabot/github_actions/github-actions-52fdf4f9c4
dependabot/github_actions/github-actions-560ea78344
dependabot/github_actions/github-actions-74498d6e3a
dependabot/github_actions/github-actions-aa3137d618
dependabot/npm_and_yarn/babel-loader-9.2.1
dependabot/npm_and_yarn/babel/node-7.25.7
dependabot/npm_and_yarn/babel/node-7.26.0
dependabot/npm_and_yarn/babel/plugin-transform-private-methods-7.25.4
dependabot/npm_and_yarn/babel/plugin-transform-private-methods-7.25.7
dependabot/npm_and_yarn/babel/plugin-transform-private-methods-7.25.9
dependabot/npm_and_yarn/core-js-3.39.0
dependabot/npm_and_yarn/core-js-3.40.0
dependabot/npm_and_yarn/cross-spawn-7.0.6
dependabot/npm_and_yarn/cypress-13.15.0
dependabot/npm_and_yarn/debounce-2.1.1
dependabot/npm_and_yarn/debounce-2.2.0
dependabot/npm_and_yarn/dompurify-3.1.7
dependabot/npm_and_yarn/elliptic-6.6.0
dependabot/npm_and_yarn/eslint-plugin-cypress-4.1.0
dependabot/npm_and_yarn/focus-trap-7.6.0
dependabot/npm_and_yarn/jquery-ui-1.14.0
dependabot/npm_and_yarn/jquery-ui-1.14.1
dependabot/npm_and_yarn/libphonenumber-js-1.11.16
dependabot/npm_and_yarn/libphonenumber-js-1.11.17
dependabot/npm_and_yarn/libphonenumber-js-1.11.9
dependabot/npm_and_yarn/marked-14.1.1
dependabot/npm_and_yarn/marked-15.0.0
dependabot/npm_and_yarn/marked-15.0.4
dependabot/npm_and_yarn/mime-4.0.6
dependabot/npm_and_yarn/multi-206390e743
dependabot/npm_and_yarn/multi-2299424a7d
dependabot/npm_and_yarn/multi-9423f4c335
dependabot/npm_and_yarn/multi-cf87d80143
dependabot/npm_and_yarn/multi-d66d039ac5
dependabot/npm_and_yarn/nanoid-3.3.8
dependabot/npm_and_yarn/nextcloud/axios-2.5.1
dependabot/npm_and_yarn/nextcloud/calendar-availability-vue-2.2.4
dependabot/npm_and_yarn/nextcloud/cypress-1.0.0-beta.12
dependabot/npm_and_yarn/nextcloud/cypress-1.0.0-beta.9
dependabot/npm_and_yarn/nextcloud/password-confirmation-5.3.1
dependabot/npm_and_yarn/nextcloud/upload-1.6.1
dependabot/npm_and_yarn/nextcloud/vue-8.19.0
dependabot/npm_and_yarn/nextcloud/vue-8.20.0
dependabot/npm_and_yarn/node-vibrant-4.0.3
dependabot/npm_and_yarn/pinia-2.2.6
dependabot/npm_and_yarn/pinia-2.3.0
dependabot/npm_and_yarn/pinia/testing-0.1.6
dependabot/npm_and_yarn/pinia/testing-0.1.7
dependabot/npm_and_yarn/puppeteer-23.10.4
dependabot/npm_and_yarn/puppeteer-23.4.1
dependabot/npm_and_yarn/puppeteer-23.5.0
dependabot/npm_and_yarn/query-string-9.1.1
dependabot/npm_and_yarn/sass-1.79.3
dependabot/npm_and_yarn/sass-1.81.0
dependabot/npm_and_yarn/sass-loader-16.0.3
dependabot/npm_and_yarn/simplewebauthn/browser-11.0.0
dependabot/npm_and_yarn/simplewebauthn/types-12.0.0
dependabot/npm_and_yarn/stable28/babel/preset-typescript-7.24.7
dependabot/npm_and_yarn/stable28/browserslist-useragent-regexp-4.1.3
dependabot/npm_and_yarn/stable28/cypress-13.13.3
dependabot/npm_and_yarn/stable28/cypress-if-1.12.6
dependabot/npm_and_yarn/stable28/cypress/vue2-2.1.1
dependabot/npm_and_yarn/stable28/dompurify-3.1.7
dependabot/npm_and_yarn/stable28/karma-6.4.4
dependabot/npm_and_yarn/stable28/libphonenumber-js-1.10.64
dependabot/npm_and_yarn/stable28/moment-timezone-0.5.46
dependabot/npm_and_yarn/stable28/nextcloud/calendar-availability-vue-2.2.4
dependabot/npm_and_yarn/stable28/nextcloud/cypress-1.0.0-beta.10
dependabot/npm_and_yarn/stable28/nextcloud/cypress-1.0.0-beta.12
dependabot/npm_and_yarn/stable28/nextcloud/cypress-1.0.0-beta.9
dependabot/npm_and_yarn/stable28/nextcloud/dialogs-5.3.8
dependabot/npm_and_yarn/stable28/nextcloud/moment-1.3.2
dependabot/npm_and_yarn/stable28/nextcloud/password-confirmation-5.1.1
dependabot/npm_and_yarn/stable28/nextcloud/sharing-0.2.4
dependabot/npm_and_yarn/stable28/pinia-2.2.8
dependabot/npm_and_yarn/stable28/pinia/testing-0.1.6
dependabot/npm_and_yarn/stable28/pinia/testing-0.1.7
dependabot/npm_and_yarn/stable28/testing-library/jest-dom-6.4.8
dependabot/npm_and_yarn/stable28/types/jest-29.5.14
dependabot/npm_and_yarn/stable28/underscore-1.13.7
dependabot/npm_and_yarn/stable29/debounce-2.1.1
dependabot/npm_and_yarn/stable29/dockerode-4.0.3
dependabot/npm_and_yarn/stable29/dockerode-4.0.4
dependabot/npm_and_yarn/stable29/dompurify-3.1.7
dependabot/npm_and_yarn/stable29/jquery-ui-1.13.3
dependabot/npm_and_yarn/stable29/jsdoc-4.0.3
dependabot/npm_and_yarn/stable29/jsdoc-4.0.4
dependabot/npm_and_yarn/stable29/mime-4.0.6
dependabot/npm_and_yarn/stable29/moment-timezone-0.5.46
dependabot/npm_and_yarn/stable29/nextcloud/cypress-1.0.0-beta.12
dependabot/npm_and_yarn/stable29/nextcloud/files-3.10.1
dependabot/npm_and_yarn/stable29/nextcloud/sharing-0.2.4
dependabot/npm_and_yarn/stable29/nextcloud/upload-1.7.1
dependabot/npm_and_yarn/stable29/nextcloud/vue-8.17.1
dependabot/npm_and_yarn/stable29/pinia/testing-0.1.7
dependabot/npm_and_yarn/stable29/throttle-debounce-5.0.2
dependabot/npm_and_yarn/stable29/types/jest-29.5.14
dependabot/npm_and_yarn/stable29/vue-material-design-icons-5.3.1
dependabot/npm_and_yarn/stable29/vueuse/components-10.11.1
dependabot/npm_and_yarn/stable29/vueuse/core-10.11.1
dependabot/npm_and_yarn/stable29/vueuse/integrations-10.11.1
dependabot/npm_and_yarn/stable30/cypress-13.13.3
dependabot/npm_and_yarn/stable30/cypress-if-1.12.6
dependabot/npm_and_yarn/stable30/debounce-2.1.1
dependabot/npm_and_yarn/stable30/dockerode-4.0.3
dependabot/npm_and_yarn/stable30/dockerode-4.0.4
dependabot/npm_and_yarn/stable30/dompurify-3.1.7
dependabot/npm_and_yarn/stable30/jsdoc-4.0.4
dependabot/npm_and_yarn/stable30/libphonenumber-js-1.11.10
dependabot/npm_and_yarn/stable30/libphonenumber-js-1.11.11
dependabot/npm_and_yarn/stable30/libphonenumber-js-1.11.16
dependabot/npm_and_yarn/stable30/libphonenumber-js-1.11.17
dependabot/npm_and_yarn/stable30/libphonenumber-js-1.11.18
dependabot/npm_and_yarn/stable30/libphonenumber-js-1.11.9
dependabot/npm_and_yarn/stable30/mime-4.0.6
dependabot/npm_and_yarn/stable30/moment-timezone-0.5.46
dependabot/npm_and_yarn/stable30/nextcloud/axios-2.5.1
dependabot/npm_and_yarn/stable30/nextcloud/calendar-availability-vue-2.2.4
dependabot/npm_and_yarn/stable30/nextcloud/calendar-availability-vue-2.2.6
dependabot/npm_and_yarn/stable30/nextcloud/files-3.10.1
dependabot/npm_and_yarn/stable30/nextcloud/moment-1.3.2
dependabot/npm_and_yarn/stable30/nextcloud/password-confirmation-5.3.1
dependabot/npm_and_yarn/stable30/nextcloud/sharing-0.2.4
dependabot/npm_and_yarn/stable30/nextcloud/upload-1.7.1
dependabot/npm_and_yarn/stable30/pinia/testing-0.1.5
dependabot/npm_and_yarn/stable30/pinia/testing-0.1.6
dependabot/npm_and_yarn/stable30/pinia/testing-0.1.7
dependabot/npm_and_yarn/stable30/query-string-9.1.1
dependabot/npm_and_yarn/stable30/ts-loader-9.5.2
dependabot/npm_and_yarn/stable30/types/dockerode-3.3.32
dependabot/npm_and_yarn/stable30/types/jest-29.5.13
dependabot/npm_and_yarn/stable30/types/jest-29.5.14
dependabot/npm_and_yarn/stable30/underscore-1.13.7
dependabot/npm_and_yarn/stable30/vue-material-design-icons-5.3.1
dependabot/npm_and_yarn/stable30/vueuse/components-10.11.1
dependabot/npm_and_yarn/stable30/vueuse/core-10.11.1
dependabot/npm_and_yarn/stable30/vueuse/integrations-10.11.1
dependabot/npm_and_yarn/testing-library/jest-dom-6.6.3
dependabot/npm_and_yarn/tslib-2.7.0
dependabot/npm_and_yarn/types/dockerode-3.3.32
dependabot/npm_and_yarn/typescript-5.6.2
dependabot/npm_and_yarn/vitejs/plugin-vue2-2.3.3
dependabot/npm_and_yarn/vitest/coverage-v8-2.1.1
dependabot/npm_and_yarn/vitest/coverage-v8-2.1.5
dependabot/npm_and_yarn/vitest/coverage-v8-2.1.8
dependabot/npm_and_yarn/vue-material-design-icons-5.3.1
dependabot/npm_and_yarn/vueuse/components-11.1.0
dependabot/npm_and_yarn/vueuse/core-11.3.0
dependabot/npm_and_yarn/vueuse/integrations-11.1.0
dependabot/npm_and_yarn/wait-on-8.0.0
dependabot/npm_and_yarn/wait-on-8.0.1
dependabot/npm_and_yarn/webdav-5.7.1
dependabot/npm_and_yarn/workbox-webpack-plugin-7.3.0
dependabot/npm_and_yarn/zip.js/zip.js-2.7.53
dependabot/npm_and_yarn/zip.js/zip.js-2.7.54
dependaniel/aws-sdk-for-28
dependaniel/aws-sdk-for-29
deps/noid/bump-3rdparty-hash
dept-remove-csrf-dependency-from-request
detect-inadvertent-config-overlaps
direct-access-shared-calendar
docs/http/cors-attribute
encoding-wrapper-metadata
encryption-version-version
enh/30551/weather-status-support-more-codes
enh/add-details-to-code-integrity-check
enh/add-first-login-timestamp
enh/add-rich-object-formatter
enh/add-user-creation-date
enh/displayname-group-search
enh/do-not-enforce-cache-for-cli
enh/favorite-search
enh/identityproof/key_storage
enh/issue-48528-disable-imip-messages
enh/issues-563-calendar-import-export
enh/limit-ldap-user-count
enh/more-task-types
enh/no-issues/share-entry-link
enh/noid/allow-configure-config.owner
enh/noid/avatar-chinese
enh/noid/disable-user-unmount
enh/noid/fix-personal-settings-layout
enh/noid/fix-properties-files
enh/noid/gs.federation.auto_accept_shares
enh/noid/navigationentryevent
enh/noid/returns-formated-app-values-2
enh/noid/signed-request
enh/noid/taskprocessing-commands-task-errors
enh/noid/taskprocessing-include-error-msg-in-tasks
enh/noid/testing-namespace
enh/noid/update-o.c.u-wording
enh/noid/user-preferences
enh/repair-mimetype-job
enh/test-mtime-after-move
enh/trashbin-scan-command
enh/users-configured-quota-value
enhancement/passwordless-login-token
enhancements/files-sharing-tests
ensureTemplateFolder
ernolf/configurable_sharetoken_length
feat-setupcheck-php-sapi-fpm-max-children
feat/26668/notifications-for-shared-calendars-2
feat/31420/bidi-backend-support
feat/45085/validate-config-values
feat/46528/ask-confirm-extension-change
feat/add-addressbook-list-command
feat/add-datetime-qbmapper-support
feat/add-directory-check-workflowengine
feat/add-mount-change-log
feat/add-proofread-tasktype
feat/add-query-param-to-force-language
feat/add-rector-config
feat/add-subscription-via-occ
feat/allow-account-local-search
feat/allow-enum-entity
feat/allow-getter-setter-decl-fors
feat/allow-oauth-grant-bypass
feat/auto-accept-trusted-server
feat/caption-cant-upload
feat/cardav-example-contact
feat/check-enterprise
feat/clipboard-fallback
feat/contacts-menu/js-hook-action
feat/conversion-adjusting
feat/core/features-api
feat/cors-on-webdav
feat/database/primary-replica-split-stable28
feat/database/query-result-fetch-associative-fetch-num
feat/dav-pagination
feat/dav-trashbin-backend
feat/dav/calendar-object-admin-audit-log
feat/declarative-settings/typed-abstraction
feat/disable-share-deletion
feat/dispatcher/log-raw-response-data
feat/edit-share-token
feat/empty-trash
feat/expose-nc-groups-to-system-addressbook-contacts
feat/file-conversion-provider
feat/file-conversion-provider-front
feat/file-list-actions
feat/files-bulk-tagging
feat/files-bulk-tagging-followup
feat/files-shortcuts
feat/files-shortcuts-2
feat/files/chunked-upload-config-capabilities
feat/files/resumable-uploads
feat/files_sharing/co-owner
feat/files_trashbin/allow-preventing-trash-permanently
feat/issue-3786-allow-shared-calendars
feat/issue-994-two-factor-api
feat/log-large-assets
feat/logger-allow-psr-loglevel
feat/mail-provider-settings
feat/make-setup-check-trait-public
feat/make-tasks-types-toggleable
feat/maxschmi-49902
feat/mountmanager/emit-events
feat/namespace-group-route
feat/nfo
feat/node-dist
feat/noid/add-fake-summary-provider
feat/noid/happy-birthday
feat/noid/info-xml-spdx-license-ids
feat/noid/lexicon-configurable-default-value
feat/noid/priority-notifications
feat/noid/ratelimit-header
feat/noid/support-email-mentions
feat/occ-files-cleanup-help
feat/ocp/attendee-availability-api
feat/ocp/meetings-api-requirements
feat/pagination-cardav
feat/photo-cache-webp
feat/php-setup-file-upload
feat/postgres-13-17
feat/profile-app
feat/public-log-level
feat/reduce_available_languages_set
feat/restore-to-original-dir
feat/restrict-tag-creation
feat/rich-profile-biography
feat/row_format_check
feat/search-by-parent-id
feat/settings/advanced-deploy-options
feat/settings/app_api_apps_management
feat/settings/too-much-caching-setup-check
feat/sharing-title
feat/shipped/app_api
feat/show-time-diff-user
feat/switch-from-settype-to-casts
feat/sync-truncation
feat/systemtags-bulk-create-list
feat/systemtags-missing-attrs
feat/systemtags-public
feat/tags-colors
feat/tags-colors-2
feat/taskprocessing/TextToImageSingle
feat/verbose-cron
feat/workflow-auto-update-cypress.yml
feat/workflow-auto-update-reuse.yml
feat/zip-folder-plugin
feat/zst
feature/23308/create-new-favorite-dashboard-widget
feature/add-allowed-view-extensions-config
feature/files-list-occ-command
feature/noid/config-lexicon
feature/noid/wrapped-appconfig
feature/settings-design-improvements
fieat/profile-pronounces
file-info-key-location-27
filecache-chunking
files-external-setup-path
filesVersionsFuncRefact
fix-44318-remote-share-not-listed
fix-copying-or-moving-from-shared-groupfolders
fix-dav-properties-column-type
fix-enforce-theme-for-public-links
fix-federated-group-shares-when-no-longer-found-in-remote-server
fix-files-external-smbclient-deprecated-binaryfinder
fix-nc-env-inclusion
fix-papercut-23486-weather-status-locale
fix-remove-auto-guessing-for-preview-semaphore
fix-setupcheck-filelocking
fix-setupcheck-webfinger-400
fix-setupchecks-normalizeUrl-url-filter
fix-show-original-owner
fix-updater-secret
fix/43260
fix/44288/catch-filesmetadatanotfound-exception
fix/45717/hide-last-modified-for-shipped-apps
fix/45884/accept-notification
fix/45982/hide-move-action
fix/46920/respect-no-download
fix/47275/driverException
fix/47658/upgrade-version-3100005
fix/48012/fix-share-email-send-mail-share
fix/48415/do-not-rename-main-share-link
fix/48437/dont-exclude-user
fix/48829/visual-feedback-4-encryption-toggle
fix/48860/stop-silent-expiry-date-addition-on-link-shares
fix/48993
fix/49473/task-url
fix/49638/update-prefs-indexes
fix/49728/adapt-search-filters-correctly
fix/49954/add-send-mail-toggle
fix/50177/movy-copy-e2e-tests
fix/788/add-password-confirmation-required-to-user-storage-create
fix/788/add-password-required-to-external-storages
fix/AppStore--remove-unneeded-warning
fix/account-mgmnt-settings
fix/activity-log-for-favorites-in-dav
fix/add-function-type-for-mimetype-sanitizer
fix/add-password-confirmation-to-save-global-creds
fix/adjust-default-color-background-plain-to-new-background
fix/ai-settings
fix/align-avatar-visibility
fix/allow-enforcing-windows-support
fix/allow-quota-wrapper-check
fix/app-discover
fix/app-store-groups
fix/app-store-markdown
fix/app-store-reactivity
fix/app-store-remove-force-enable
fix/appconfig/sensitive-keys-external-jwt-private-key
fix/appframework/csrf-request-checks
fix/apps/wrong-missing-casts
fix/appstore-regressions
fix/auth-token-uniq-constraint-violation-handling
fix/auth/authtoken-activity-update-in-transaction
fix/avoid-invalid-share-on-transfer-ownership
fix/background-image
fix/backgroundjobs/adjust-intervals-time-sensitivities
fix/baseresponse/xml-element-value-string-cast
fix/better-drag-n-drop
fix/bring-back-zip-event
fix/broken-event-notifications
fix/cachebuster-stable30
fix/caldav/event-organizer-interaction
fix/caldav/event-reader-duration
fix/carddav/create-sab-concurrently
fix/cast-node-names-to-string
fix/clarify-app-manager-methods
fix/cloud-id-input
fix/comment/children-count-integer
fix/composer/autoload-dev-deps
fix/config/additional-configs
fix/contactsmigratortest
fix/conversion-extension
fix/convert-log
fix/core-session-logout-logging
fix/cron-strict-cookie
fix/cron/log-long-running-jobs-stable26
fix/dashboard--performance-and-refactoring
fix/dashboard/dont-load-hidden-widgets-initially
fix/dashboard/skip-hidden-widgets
fix/datadirectory-protection-setupcheck
fix/dav-add-strict-type-declarations
fix/dav-cast-content-lenght-to-int
fix/dav-cast-params-to-string
fix/dav/abort-incomplete-caldav-changes-sync
fix/dav/carddav-read-card-memory-usage
fix/dav/image-export-plugin-fallback
fix/dav/limit-sync-token-created-at-updates-stable28
fix/dav/limit-sync-token-created-at-updates-stable29
fix/dav/view-only-check
fix/declarative-settings-priority
fix/defaultshareprovider/filter-reshares-correctly
fix/deps/php-seclin
fix/do-not-throw-from-countusers
fix/download-non-files-view
fix/drop-v-html
fix/duplicated-conflict-resolution
fix/edit-locally-labels
fix/empty-file-0byte-stable30
fix/encode-guest-file-request
fix/encrypt-decrypt-password
fix/encryption/web-ui-bogus
fix/entity/strict-types
fix/eslint-warning
fix/eslint-warnings
fix/etag-constraint-search-query
fix/external-storage-controller-cast-id
fix/external-storage-int
fix/fail-safe-files-actions
fix/federated-users
fix/federation-certificate-store
fix/file-conversion-missing-extension
fix/file-list-filters-reset
fix/file-type-filter-state
fix/files--handle-empty-view-with-error
fix/files--list-header-button-title
fix/files-add-move-info
fix/files-duplicated-nodes
fix/files-page-title
fix/files-proper-loading-icon
fix/files-rename
fix/files-rename-esc
fix/files-rename-store
fix/files-renaming
fix/files-scroll-perf
fix/files/delete-display-no-trashbin
fix/files/preview-service-worker-registration
fix/files/reactivity-inject
fix/files/sort-after-view-change
fix/files_external/forbidden-exception
fix/files_external_scan
fix/files_sharing--global-search-in-select
fix/files_sharing/cleanup-error-messages
fix/files_sharing/disable-editing
fix/files_sharing/harden-api
fix/files_sharing/ocm-permissions
fix/files_sharing/sharing-entry-link-override-expiration-date
fix/filesreport-cast-fileId-to-int
fix/filter-for-components-explicitly
fix/fix-admin-audit-event-listening
fix/fix-copy-to-mountpoint-root
fix/fix-disabled-user-list-for-subadmins
fix/fix-email-setupcheck-with-null-smtpmode
fix/fix-email-share-transfer-accross-storages
fix/fix-int-casting
fix/fix-ldap-setupcheck-crash
fix/fix-server-tests
fix/fix-share-creation-error-messages
fix/fix-storage-interface-check
fix/flaky-cypress
fix/flaky-live-photos
fix/forbidden-files-insensitive
fix/forward-user-login-if-no-session
fix/get-managers-as-subadmin
fix/gracefully-parse-trusted-certificates
fix/handle-errors-in-migrate-key-format
fix/http/jsonresponse-data-type
fix/http/template-valid-status-codes
fix/imip-test-expects-integer
fix/improve-ldap-avatar-handling
fix/index-systemtags
fix/install-dbport-unused
fix/installation-wording
fix/invalid-app-config
fix/invalid-copied-share-link
fix/invalid-mtime
fix/invitations-named-parameter
fix/issue-12387-delete-invitations
fix/issue-13862
fix/issue-23666
fix/issue-3021-return-no-content-instead-of-error
fix/issue-34720
fix/issue-47879-property-serialization
fix/issue-48079-windows-time-zones
fix/issue-48528-disable-itip-and-imip-messages
fix/issue-48528-disable-itip-and-imip-messages-2
fix/issue-48732-exdate-rdate-property-instances
fix/issue-49756-translations
fix/issue-8458-imip-improvements-2
fix/istorage/return-types
fix/iurlgenerator/url-regex-markdown-parenthesis
fix/ldap-avoid-false-positive-mapping
fix/legacy-file-drop
fix/line-height-calc
fix/link-share-conflict-modal
fix/load-more-than-5-items-in-folder-filter
fix/lock-session-during-cookie-renew
fix/log-login-flow-state-token-errors
fix/log-memcache-log-path-hash
fix/login-origin
fix/mailer-binaryfinder-fallback
fix/make-router-reactive
fix/migrate-encryption-away-from-hooks
fix/move-email-logic-local-user-backend
fix/move-storage-constructor-to-specific-interface
fix/multi-select
fix/nav-quota-new-design
fix/no-issue/enforced-props-checks
fix/no-issue/file-request-disable-when-no-public-upload
fix/no-issue/link-sharing-defaults
fix/no-issue/no-reshare-perms-4-email-shares
fix/no-issue/proper-share-sorting
fix/no-issue/show-file-drop-permissions-correctly
fix/no-issues/add-encryption-available-config
fix/noid/appconfig-setmixed-on-typed
fix/noid/broken-taskprocessing-api
fix/noid/clean-config-code
fix/noid/count-disabled-correct
fix/noid/debug-objectstorage-s3
fix/noid/deleted-circles-share
fix/noid/deprecation-correct-case
fix/noid/discover-unique-ocmprovider
fix/noid/empty-path-for-files-versions
fix/noid/federation-really-surely-init-token
fix/noid/fix-try-login
fix/noid/get-fedid-from-cloudfed-provider
fix/noid/ignore-unavailable-token
fix/noid/init-navigation-data-too-soon
fix/noid/ldap-displayname-cached
fix/noid/ldap-n-counted-mapped-users
fix/noid/ldap-remnants-as-disabled-global
fix/noid/no-emails-for-user-shares
fix/noid/null-safe-metadata
fix/noid/path-hash-prep-statement
fix/noid/refresh-filesize-on-conflict-24
fix/noid/return-verified-email
fix/noid/run-kerberos-tests-on-ubuntu-latest
fix/noid/set-ext-pwd-as-sensitive
fix/noid/test-samba-with-self-hosted
fix/noid/textprocessing-list-types
fix/noid/textprocessing-schedule-taskprocessing-provider
fix/noid/thudnerbird-addon-useragent
fix/noid/try-latest-buildjet-cache
fix/noid/update-codeowners-nfebe
fix/note-icon-color
fix/null-label
fix/oauth2/owncloud-migration
fix/oc/inheritdoc
fix/ocm-host
fix/ocmdiscoveryservice/cache-errors
fix/openapi/array-syntax
fix/overide-itip-broker
fix/ownership-transfer-source-user-files
fix/password-field-sharing
fix/password-validation
fix/people-translation
fix/pick-folder-smart-picker
fix/picker-tag-color
fix/pronouns-tests
fix/proper-preview-icon
fix/provisionApi-status-codes
fix/proxy-app-screenshot
fix/psalm/enabled-find-unused-baseline-entry
fix/psalm/throws-annotations
fix/psalm/update-baseline
fix/public-copy-move-stable-28
fix/public-get
fix/qbmapper/find-entities-return-type
fix/querybuilder/oracle-indentifier-length
fix/querybuilder/output-columns-aliases
fix/reasons-to-use
fix/recently_active_pgsql
fix/rector-use-statements
fix/refactor-user-access-to-file-list
fix/remove-needless-console-log
fix/remove-references-to-deprected-storage-interface
fix/remove-share-hint-exception-wrapping
fix/resiliant-user-removal
fix/resolve_public_rate_limit
fix/restore-sucess
fix/retry-delete-if-locked
fix/rtl-regession
fix/s3-verify-peer-setting
fix/s3configtrait/proxy-false
fix/sabre-dav-itip-broker
fix/sass
fix/session-cron
fix/session/log-likely-lost-session-conditions
fix/session/log-session-id
fix/session/log-session-start-error
fix/session/session-passphraze-handling
fix/session/transactional-remember-me-renewal
fix/settings--disable-discover-when-app-store-is-disabled
fix/settings-command
fix/settings/admin/ai/textprocessing
fix/settings/ex-apps-search
fix/settings/mail-server-settings-form
fix/settings/userid-dependency-injection
fix/share-api-create--permissions
fix/share-notifications
fix/sharing-entry-link
fix/sharing-password-submit-create
fix/sharing-sidebar-tab-default
fix/shipped-app-version
fix/sidebar-favorites
fix/stable27
fix/stable28-uploader
fix/stable28/webcal-subscription-jobs-middleware
fix/stable29/numerical-userid-file-item-display
fix/stable29/webcal-subscription-jobs-middleware
fix/stable29_share-api-create--permissions
fix/stable30/share-types-references
fix/storage-local/get-source-path-spl-file-info
fix/storage/get-directory-content-return-type
fix/storage/get-owner-false
fix/storage/method-docs-inheritance
fix/strict-types
fix/subadmin-user-groups
fix/tags/boolean-user-has-tags
fix/task-processing-api-controller/dont-use-plus
fix/taskprocessing-api-get-file-contents
fix/taskprocessing-better-errors
fix/taskprocessing-manager/php-notice
fix/template-name-overflow
fix/template-return-type
fix/template-vue3-main
fix/texttotextchatwithtools-translator-notes
fix/themes-layout
fix/theming/default-theme-selection
fix/ticket_9672007/share_mail
fix/typo-recommended-apps
fix/undefined-application-key
fix/undefined-response
fix/unified-search-ctrl-f
fix/unified-search-empty-sections
fix/update-notification
fix/update-share-entry-quick-select
fix/updatenotification-legacy-toast
fix/use-invokeprivate-for-test
fix/user_status/harden-api
fix/usertrait/backend-initialization
fix/view-in-folder-conditions
fix/view-only-preview
fix/view/catch-mkdir-exception-non-existent-parents
fix/weather_status/search-address-offline-errors
fix/webcal-subscription-jobs-middleware
fix/wrong-image-type
fixHeaderStyleSettings
fixKeyExFileExt
followup/39574/ocm-provider-without-beautiful-urls
followup/47329/add-all-types-to-handling
followup/48086/fix-more-activity-providers
forbid-moving-subfolder-24
fox/noid/extended-auth-on-webdav
fwdport/48445/master
getMountsForFileId-non-sparse
guzzleHandler
hasTableTaskprocessingTasks
icewind-smb-3.7
ignore-write-test-unlink-err
instance-quota
issue_45523_actionmenu_in_multiple_actions_menu_bar
joblist-build-error-log
jr-quota-exceeded-admin-log
jr/enh/updates/options-buttons-web-ui
jr/meta/issue-template-bugs-closed-link
jtr-feat-setupchecks-limit-type
jtr-locale-personal-info
jtr-perf-checks-connectivity-https-proto
jtr-settings-memory-limit-details
jtr/chore-bug-report-logs
jtr/desc-and-help-plus-minor-fixes-files-scan
jtr/dns-noisy-dns-get-record
jtr/fix-25162
jtr/fix-40666-fallback-copy
jtr/fix-45671
jtr/fix-46609-delegation-add-group-overlap
jtr/fix-appframework-server-proto
jtr/fix-hash-hkdf-valueerror
jtr/fix-ipv6-zone-ids-link-local
jtr/fix-sharing-update-hints
jtr/fix-streamer-zip64
jtr/fix-tests/mysql-phpunit-health
jtr/fix-updater-cleanup-job-logging
jtr/fix-wipe-missing-token-handling
jtr/occ-maintenance-mode-desc
jtr/preview-thumb-robustness
jtr/router-light-refactoring
jtr/setup-checks-heading
jtr/test-binaryfinder
jtr/typo-accessibility-config-sample
kerberos-saved-ticket
kerberos-saved-ticket-27
location-provider
lockThreadsOlderThan120d
log-event-recursion
login-less-custom-bundle
man/backport/45237/stable27
master
merge-token-updates
metadata-storage-id
mgallien/fix/retry_cache_operations_on_deadlock
mixedSetTTL
mount-move-checks
mountpoint-get-numeric-storage-id-cache
move-from-encryption-no-opt
moveStrictTyping
mysqlNativePassCi
new-julius
no-issue-use-correct-exceptions-in-share-class
noissue-refactor-share-class
normlize-less
notfound-debug-mounts
obj-delete-not-found
obj-delete-not-found-20
object-store-move-db
object-store-move-fixes
object-store-trash-move
oc-wnd-migrate
oc-wnd-migrate-25
occ-as-root
occ-upgrade-reminder
occ-upgrade-wording
oci-ci-faststart
ocs-user-info-quota-optimize
optionally-hide-hidden-files-in-public-share-access
oracle-share-reminder
passedLockValueIsIntOrNull
patch/61084/disable-clear-cache
patch/hash-return-null
patch/performance-scckit
path-available
perf/cache-file-reminders
perf/core/jobs-index
perf/files/chunked-upload-default-100-mib
perf/log-excessive-memory-consumption
perf/log-high-memory-requests
perf/noid/split-getSharedWith-query-into-more-performance-sets
perf/noid/unified-search-init
printOccHumanFriendly
printOnlyOnceText
profile-request
pull_request-trigger
query-req-id-26
rakekniven-patch-1
rakekniven-patch-2
readd-object-store-phpunit
refactSmallAdjust
refactor/48925/sharing-sidebar-redesign
refactor/app/remove-register-routes
refactor/apps/constructor-property-promotion
refactor/apps/declare-strict-types
refactor/apps/php55-features
refactor/appstore-modernization
refactor/background-service
refactor/class-string-constant
refactor/dirname-to-dir
refactor/drop-to-uploader
refactor/elvis
refactor/files-cleanup
refactor/files-deprecated-share-types
refactor/files-filelist-width
refactor/files-required-navigation
refactor/move-to-new-activity-exception
refactor/provide-file-actions-through-composable
refactor/rector/extend-scope
refactor/register-routes
refactor/self-class-reference
refactor/settings/mail-settings-parameters
refactor/share-manager-appconfig
refactor/storage/constructors
refactor/storage/strong-param-types
refactor/storage/strong-type-properties
refactor/stream-encryption/typings
refactor/template-layout
refactor/void-tests
refactor/zip-event
release/28.0.11
release/28.0.11_rc1
release/28.0.12
release/28.0.12_rc1
release/28.0.12_rc2
release/28.0.14
release/28.0.14_rc1
release/29.0.0beta2
release/29.0.11
release/29.0.11_rc1
release/29.0.8
release/29.0.8_rc1
release/29.0.9
release/29.0.9_rc1
release/29.0.9_rc2
release/30.0.1_rc
release/30.0.1_rc1
release/30.0.1_rc2
release/30.0.2
release/30.0.2_rc1
release/30.0.2_rc2
release/30.0.4
release/30.0.4_rc1
release/30.0.5
release/30.0.5_rc1
release/31.0.0_beta_1
release/31.0.0_beta_2
release/31.0.0_beta_4
remove-filecache-joins
remove-locking-config-sample
remove-non-accessible-shares
removeNoisyTextEmails
rename-deleted-default-calendar-in-trashbin
repair-mimetype-expensive-squashed-29
repair-tree-invalid-parent
reshare-permission-logic-27
revert-49004
revert-49650-backport/49293/stable30
revert-49825-revert-49650-backport/49293/stable30
revert/41453
revert/openapi-extractor
revoke-admin-overwrite-8
reworkShareExceptions
rfc/global-rate-limit
rfc/request-timeout
run-test-mime-type-icon-again
s3-bucket-create-exception
s3-disable-multipart
s3-disable-multipart-remove-debug
safety-net-null-check
scan-home-ext-storae
scanner-invalid-data-log
scckit-backports
seekable-http-size-24
setupChecksMoveFromBinary
sftp-fopen-write-stat-cache
sftp-known-mtime
sharding-code-fixes
sharding-existing
sharding-select-fixes
share-list-set-owner
share-mount-check-no-in
share-move-storage-error
share-reminder-sharding
share-root-meta-cache
skjnldbot/nextcloud-upload
skjnldsv-patch-1
smb-acl-fail-soft
smb-notify-test
smb-systembridge
stable-swift-v3
stable10
stable11
stable12
stable13
stable14
stable15
stable16
stable17
stable18
stable19
stable20
stable21
stable22
stable23
stable24
stable25
stable26
stable27
stable28
stable28BackportMissingSetTTL
stable29
stable30
stable30-fix-renaming-a-received-share-by-a-user-with-stale-shares
stable9
storage-cache-not-exists
storage-debug-info
storage-id-cache-memcache
stream-assembly-stream-size
techdebt/noid/add-parameter-typehints
techdebt/noid/more-useful-debug-logs
test-scanner-no-transactions-26
test/eol-check
test/eol-check-26
test/fix-cypress
test/folder-tree
test/integration/cleanup-logs
test/widget-perf
tests/fix-jest-leftover
tests/template-workflow
transfer-share-skip-notfound
try-non-recursive-source-27
update-phpdoc-for-folder-get
update-stale-bot-configuration
updater-change-mimetype-objectstore
useHttpFramework
useOCPClassesTrashbin
usermountcache-filecache-joins
validateProvidedEmail
wrapper-instanceof-resiliant-squash
blob: c1e036c36311642cd577cdd8cec12860a039e3d8 (
plain )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
# <icewind1991@gmail.com>, 2012.
# Rivo Zängov <eraser@eraser.ee>, 2011-2013.
msgid ""
msgstr ""
" Project-Id-Version: ownCloud\n"
" Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
" POT-Creation-Date: 2013-02-22 00:06+0100\n"
" PO-Revision-Date: 2013-02-20 23:30+0000\n"
" Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
" Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n"
" MIME-Version: 1.0\n"
" Content-Type: text/plain; charset=UTF-8\n"
" Content-Transfer-Encoding: 8bit\n"
" Language: et_EE\n"
" Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: ajax/apps/ocs.php:20
msgid "Unable to load list from App Store"
msgstr "App Sotre'i nimekirja laadimine ebaõnnestus"
#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:15
#: ajax/togglegroups.php:18
msgid "Authentication error"
msgstr "Autentimise viga"
#: ajax/changedisplayname.php:32
msgid "Unable to change display name"
msgstr ""
#: ajax/creategroup.php:10
msgid "Group already exists"
msgstr "Grupp on juba olemas"
#: ajax/creategroup.php:19
msgid "Unable to add group"
msgstr "Keela grupi lisamine"
#: ajax/enableapp.php:11
msgid "Could not enable app. "
msgstr "Rakenduse sisselülitamine ebaõnnestus."
#: ajax/lostpassword.php:12
msgid "Email saved"
msgstr "Kiri on salvestatud"
#: ajax/lostpassword.php:14
msgid "Invalid email"
msgstr "Vigane e-post"
#: ajax/removegroup.php:13
msgid "Unable to delete group"
msgstr "Keela grupi kustutamine"
#: ajax/removeuser.php:24
msgid "Unable to delete user"
msgstr "Keela kasutaja kustutamine"
#: ajax/setlanguage.php:15
msgid "Language changed"
msgstr "Keel on muudetud"
#: ajax/setlanguage.php:17 ajax/setlanguage.php:20
msgid "Invalid request"
msgstr "Vigane päring"
#: ajax/togglegroups.php:12
msgid "Admins can't remove themself from the admin group"
msgstr ""
#: ajax/togglegroups.php:28
#, php-format
msgid "Unable to add user to group %s"
msgstr "Kasutajat ei saa lisada gruppi %s"
#: ajax/togglegroups.php:34
#, php-format
msgid "Unable to remove user from group %s"
msgstr "Kasutajat ei saa eemaldada grupist %s"
#: ajax/updateapp.php:14
msgid "Couldn't update app."
msgstr "Rakenduse uuendamine ebaõnnestus."
#: js/apps.js:30
msgid "Update to {appversion}"
msgstr "Uuenda versioonile {appversion}"
#: js/apps.js:36 js/apps.js:76
msgid "Disable"
msgstr "Lülita välja"
#: js/apps.js:36 js/apps.js:64
msgid "Enable"
msgstr "Lülita sisse"
#: js/apps.js:55
msgid "Please wait...."
msgstr "Palun oota..."
#: js/apps.js:84
msgid "Updating...."
msgstr "Uuendamine..."
#: js/apps.js:87
msgid "Error while updating app"
msgstr "Viga rakenduse uuendamisel"
#: js/apps.js:87
msgid "Error"
msgstr "Viga"
#: js/apps.js:90
msgid "Updated"
msgstr "Uuendatud"
#: js/personal.js:96
msgid "Saving..."
msgstr "Salvestamine..."
#: js/users.js:30
msgid "deleted"
msgstr "kustutatud"
#: js/users.js:30
msgid "undo"
msgstr "tagasi"
#: js/users.js:62
msgid "Unable to remove user"
msgstr ""
#: js/users.js:75 templates/users.php:26 templates/users.php:80
#: templates/users.php:105
msgid "Groups"
msgstr "Grupid"
#: js/users.js:78 templates/users.php:82 templates/users.php:119
msgid "Group Admin"
msgstr "Grupi admin"
#: js/users.js:99 templates/users.php:161
msgid "Delete"
msgstr "Kustuta"
#: js/users.js:191
msgid "add group"
msgstr "lisa grupp"
#: js/users.js:352
msgid "A valid username must be provided"
msgstr ""
#: js/users.js:353 js/users.js:359 js/users.js:374
msgid "Error creating user"
msgstr "Viga kasutaja loomisel"
#: js/users.js:358
msgid "A valid password must be provided"
msgstr ""
#: personal.php:29 personal.php:30
msgid "__language_name__"
msgstr "Eesti"
#: templates/admin.php:15
msgid "Security Warning"
msgstr "Turvahoiatus"
#: templates/admin.php:18
msgid ""
"Your data directory and your files are probably accessible from the "
"internet. The .htaccess file that ownCloud provides is not working. We "
"strongly suggest that you configure your webserver in a way that the data "
"directory is no longer accessible or you move the data directory outside the"
" webserver document root."
msgstr ""
#: templates/admin.php:29
msgid "Setup Warning"
msgstr ""
#: templates/admin.php:32
msgid ""
"Your web server is not yet properly setup to allow files synchronization "
"because the WebDAV interface seems to be broken."
msgstr ""
#: templates/admin.php:33
#, php-format
msgid "Please double check the <a href='%s'>installation guides</a>."
msgstr ""
#: templates/admin.php:44
msgid "Module 'fileinfo' missing"
msgstr ""
#: templates/admin.php:47
msgid ""
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this "
"module to get best results with mime-type detection."
msgstr ""
#: templates/admin.php:58
msgid "Locale not working"
msgstr ""
#: templates/admin.php:61
msgid ""
"This ownCloud server can't set system locale to "
"\"en_US.UTF-8\"/\"en_US.UTF8\". This means that there might be problems with"
" certain characters in file names. We strongly suggest to install the "
"required packages on your system to support en_US.UTF-8/en_US.UTF8."
msgstr ""
#: templates/admin.php:72
msgid "Internet connection not working"
msgstr ""
#: templates/admin.php:75
msgid ""
"This ownCloud server has no working internet connection. This means that "
"some of the features like mounting of external storage, notifications about "
"updates or installation of 3rd party apps don´t work. Accessing files from "
"remote and sending of notification emails might also not work. We suggest to"
" enable internet connection for this server if you want to have all features"
" of ownCloud."
msgstr ""
#: templates/admin.php:89
msgid "Cron"
msgstr ""
#: templates/admin.php:98
msgid "Execute one task with each page loaded"
msgstr ""
#: templates/admin.php:108
msgid ""
"cron.php is registered at a webcron service. Call the cron.php page in the "
"owncloud root once a minute over http."
msgstr ""
#: templates/admin.php:118
msgid ""
"Use systems cron service. Call the cron.php file in the owncloud folder via "
"a system cronjob once a minute."
msgstr ""
#: templates/admin.php:125
msgid "Sharing"
msgstr "Jagamine"
#: templates/admin.php:131
msgid "Enable Share API"
msgstr ""
#: templates/admin.php:132
msgid "Allow apps to use the Share API"
msgstr ""
#: templates/admin.php:139
msgid "Allow links"
msgstr ""
#: templates/admin.php:140
msgid "Allow users to share items to the public with links"
msgstr ""
#: templates/admin.php:147
msgid "Allow resharing"
msgstr ""
#: templates/admin.php:148
msgid "Allow users to share items shared with them again"
msgstr ""
#: templates/admin.php:155
msgid "Allow users to share with anyone"
msgstr ""
#: templates/admin.php:158
msgid "Allow users to only share with users in their groups"
msgstr ""
#: templates/admin.php:165
msgid "Security"
msgstr "Turvalisus"
#: templates/admin.php:178
msgid "Enforce HTTPS"
msgstr "Sunni peale HTTPS-i kasutamine"
#: templates/admin.php:179
msgid ""
"Enforces the clients to connect to ownCloud via an encrypted connection."
msgstr ""
#: templates/admin.php:182
msgid ""
"Please connect to this ownCloud instance via HTTPS to enable or disable the "
"SSL enforcement."
msgstr ""
#: templates/admin.php:192
msgid "Log"
msgstr "Logi"
#: templates/admin.php:193
msgid "Log level"
msgstr "Logi tase"
#: templates/admin.php:220
msgid "More"
msgstr "Rohkem"
#: templates/admin.php:227 templates/personal.php:98
msgid "Version"
msgstr "Versioon"
#: templates/admin.php:230 templates/personal.php:100
msgid ""
"Developed by the <a href=\"http://ownCloud.org/contact\" "
"target=\"_blank\">ownCloud community</a>, the <a "
"href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is "
"licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" "
"target=\"_blank\"><abbr title=\"Affero General Public "
"License\">AGPL</abbr></a>."
msgstr ""
#: templates/apps.php:10
msgid "Add your App"
msgstr "Lisa oma rakendus"
#: templates/apps.php:11
msgid "More Apps"
msgstr "Veel rakendusi"
#: templates/apps.php:24
msgid "Select an App"
msgstr "Vali programm"
#: templates/apps.php:28
msgid "See application page at apps.owncloud.com"
msgstr "Vaata rakenduste lehte aadressil apps.owncloud.com"
#: templates/apps.php:29
msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>"
msgstr "<span class=\"licence\"></span>-litsenseeritud <span class=\"author\"></span>"
#: templates/apps.php:31
msgid "Update"
msgstr "Uuenda"
#: templates/help.php:3
msgid "User Documentation"
msgstr "Kasutaja dokumentatsioon"
#: templates/help.php:4
msgid "Administrator Documentation"
msgstr "Administraatori dokumentatsioon"
#: templates/help.php:6
msgid "Online Documentation"
msgstr "Online dokumentatsioon"
#: templates/help.php:7
msgid "Forum"
msgstr "Foorum"
#: templates/help.php:9
msgid "Bugtracker"
msgstr "Vigade nimekiri"
#: templates/help.php:11
msgid "Commercial Support"
msgstr "Tasuine kasutajatugi"
#: templates/personal.php:8
#, php-format
msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>"
msgstr ""
#: templates/personal.php:14
msgid "Get the apps to sync your files"
msgstr ""
#: templates/personal.php:25
msgid "Show First Run Wizard again"
msgstr ""
#: templates/personal.php:36 templates/users.php:23 templates/users.php:79
msgid "Password"
msgstr "Parool"
#: templates/personal.php:37
msgid "Your password was changed"
msgstr "Sinu parooli on muudetud"
#: templates/personal.php:38
msgid "Unable to change your password"
msgstr "Sa ei saa oma parooli muuta"
#: templates/personal.php:39
msgid "Current password"
msgstr "Praegune parool"
#: templates/personal.php:40
msgid "New password"
msgstr "Uus parool"
#: templates/personal.php:42
msgid "Change password"
msgstr "Muuda parooli"
#: templates/personal.php:54 templates/users.php:78
msgid "Display Name"
msgstr "Näidatav nimi"
#: templates/personal.php:55
msgid "Your display name was changed"
msgstr ""
#: templates/personal.php:56
msgid "Unable to change your display name"
msgstr ""
#: templates/personal.php:59
msgid "Change display name"
msgstr "Muuda näidatavat nime"
#: templates/personal.php:68
msgid "Email"
msgstr "E-post"
#: templates/personal.php:69
msgid "Your email address"
msgstr "Sinu e-posti aadress"
#: templates/personal.php:70
msgid "Fill in an email address to enable password recovery"
msgstr "Parooli taastamise sisse lülitamiseks sisesta e-posti aadress"
#: templates/personal.php:76 templates/personal.php:77
msgid "Language"
msgstr "Keel"
#: templates/personal.php:82
msgid "Help translate"
msgstr "Aita tõlkida"
#: templates/personal.php:87
msgid "WebDAV"
msgstr "WebDAV"
#: templates/personal.php:89
msgid "Use this address to connect to your ownCloud in your file manager"
msgstr ""
#: templates/users.php:21 templates/users.php:77
msgid "Login Name"
msgstr "Kasutajanimi"
#: templates/users.php:32
msgid "Create"
msgstr "Lisa"
#: templates/users.php:35
msgid "Default Storage"
msgstr ""
#: templates/users.php:41 templates/users.php:139
msgid "Unlimited"
msgstr "Piiramatult"
#: templates/users.php:59 templates/users.php:154
msgid "Other"
msgstr "Muu"
#: templates/users.php:84
msgid "Storage"
msgstr ""
#: templates/users.php:95
msgid "change display name"
msgstr "muuda näidatavat nime"
#: templates/users.php:99
msgid "set new password"
msgstr "määra uus parool"
#: templates/users.php:134
msgid "Default"
msgstr "Vaikeväärtus"