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

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-03-21Run tests with MySQL/MariaDB ONLY_FULL_GROUP_BYJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2022-02-11Merge pull request #31011 from nextcloud/dronupdtJoas Schilling
Remove MariaDB 10.1 and PGsql 9.6 (both EOL) from drone
2022-02-09Temporarily disable samba-non-native as it times out too oftenJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2022-02-07Add Postgres10acsfer
2022-02-07Remove PGsql 9.6 (EOL)acsfer
2022-02-06Keep 10.4 to PHP8acsfer
2022-02-06Update .drone.ymlacsfer
Co-authored-by: Joas Schilling <213943+nickvergessen@users.noreply.github.com>
2022-02-06Replace with 10.2acsfer
2022-02-05Fix testsacsfer
2022-02-04Typo fixacsfer
2022-02-04Update droneacsfer
- Remove MariaDB 10.1 (EOL) - Always test latest
2022-01-25Fix apache2 start command in .drone.ymlCôme Chilliet
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
2022-01-25Fix docker images sourceCôme Chilliet
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
2022-01-25Move all drone images to PHP 7.4Côme Chilliet
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
2022-01-25Drop 7.3 from some CI stepsCôme Chilliet
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
2021-12-07Add MariaDB 10.6 pipelineacsfer
Keeping MariaDB 10.4 too as both versions have some BC breaks, so tests will run on both (for now).
2021-11-26Reintroduce memcachedacsfer
2021-11-26Drop old/duplicate pipelinesacsfer
2021-11-24Add Drone php8.0 pipelines for MariaDB10.4, MySQL8, PGSQL13acsfer
Add Drone php8.0 pipelines for MariaDB10.4, MySQL8, PGSQL13
2021-07-20Move integration-php7.3 to latestJohn Molakvoæ (skjnldsv)
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
2021-07-01Use minio for s3 testsJulius Härtl
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2021-06-30Run s3 tests againJulius Härtl
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2021-06-01Add XDEBUG_MODE=coverageLukas Reschke
This should help the Codecov execution jobs. Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
2021-05-29Use MariaDB from GHCRLukas Reschke
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
2021-05-29Move PGSQL to GHCRLukas Reschke
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
2021-05-29Migrate more services to GHCRLukas Reschke
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
2021-05-29Bump Container VersionsLukas Reschke
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
2021-05-29Use GHCR PHP 7.3 Acceptance ContainerLukas Reschke
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
2021-05-28Merge pull request #27211 from nextcloud/use-ghcr-php7.3John Molakvoæ
2021-05-28Merge pull request #27212 from nextcloud/use-gchr-for-servicesJohn Molakvoæ
Use GHCR for services
2021-05-28Merge pull request #27213 from nextcloud/use-alpine-gitJohn Molakvoæ
Use GHCR for Git Pull image
2021-05-28Use GHCR Selenium ContainerLukas Reschke
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
2021-05-28Use GHCR for Git Pull imageLukas Reschke
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
2021-05-28Use GHCR for servicesLukas Reschke
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
2021-05-28Use GHCR PHP 7.3 containerLukas Reschke
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
2021-05-28Use GitHub container registryLukas Reschke
To avoid Docker ratelimit issues. Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
2021-04-23Add integration tests for searching users in contacts menuDaniel Calviño Sánchez
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2021-04-16Update acceptance tests to Selenium 3Daniel Calviño Sánchez
The acceptance tests used the last Selenium 2 Docker container available, which provides a rather old Firefox version (Firefox 47). Nevertheless, despite some rendering issues, most things still worked as expected due to the JavaScript files being built with support for older browsers. However, now that support for Internet Explorer 11 and older browsers will be dropped things could start to fail, so a newer browser (and thus a newer Selenium version) should be used in the acceptance tests. Selenium has been standardized by the W3C, and the protocol to communicate between the Selenium server and the browser has changed due to that. Firefox >= 48 only supports the new W3C protocol, but the Selenium driver for Mink does not support it yet. The old protocol can still be used in recent Chromium/Chrome versions by explicitly forcing it, so for the time being the acceptance tests will need to be run on Chrome instead (although Firefox provides some interesting features like the fake streams that would be needed to test calls in Talk, so they should be moved again to Firefox once possible). Finally, the default shm size of Docker is 64 MiB. This does not seem enough to run newer Chrome releases and causes the browser to randomly crash during the tests ("unknown error: session deleted because of page crash" is shown in the logs). Due to this "disable-dev-shm-usage" needs to be used so Chrome writes shared memory files into "/tmp" instead of "/dev/shm" (the default shm size of Docker could have been increased instead using "docker run --shm-size...", but that seems to be problematic when the container is run in current Drone releases). Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2021-03-18Merge pull request #25331 from ↵Morris Jobke
nextcloud/fix-valid-storages-removed-when-cleaning-remote-storages Fix valid storages removed when cleaning remote storages
2021-03-10Also execute the new tests on droneJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2021-01-26Add integration tests for "sharing:cleanup-remote-storages" OCC commandDaniel Calviño Sánchez
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2021-01-08Use specific docker image tags to allow drone to cache them and not run into ↵Morris Jobke
docker pull rate limits Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2021-01-07Fix name of avatar integration tests in DroneDaniel Calviño Sánchez
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2021-01-07Update postgres version testsRoeland Jago Douma
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2021-01-06No need to run mysql5 tests anymoreRoeland Jago Douma
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2020-12-29jsunit: Run jsunit with chromium/puppeteer on github actionsJulius Härtl
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2020-12-07Add php8 CIRoeland Jago Douma
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2020-12-07Add integration tests for user avatarsDaniel Calviño Sánchez
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2020-10-30Only run phpunit when php, xml or test files are modifiedJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2020-09-18To revert once php8.0 packages are thereJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>