Skip to content

Commit d9567c2

Browse files
authored
Add cutting edge MariaDB 10.11 (LTS) and PHP 8.2 to drone
Signed-off-by: Git'Fellow <[email protected]>
1 parent fc07627 commit d9567c2

1 file changed

Lines changed: 38 additions & 0 deletions

File tree

.drone.yml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -383,6 +383,44 @@ trigger:
383383
- pull_request
384384
- push
385385

386+
---
387+
kind: pipeline
388+
name: mariadb10.11-php8.2
389+
390+
steps:
391+
- name: submodules
392+
image: ghcr.io/nextcloud/continuous-integration-alpine-git:latest
393+
commands:
394+
- git submodule update --init
395+
- name: mariadb10.11-php8.2
396+
image: ghcr.io/nextcloud/continuous-integration-php8.2:latest
397+
commands:
398+
- bash tests/drone-run-php-tests.sh || exit 0
399+
- NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh mariadb
400+
401+
services:
402+
- name: cache
403+
image: ghcr.io/nextcloud/continuous-integration-redis:latest
404+
- name: mariadb
405+
image: ghcr.io/nextcloud/continuous-integration-mariadb-10.11:latest
406+
environment:
407+
MYSQL_ROOT_PASSWORD: owncloud
408+
MYSQL_USER: oc_autotest
409+
MYSQL_PASSWORD: owncloud
410+
MYSQL_DATABASE: oc_autotest
411+
command:
412+
- --sql-mode=ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION
413+
tmpfs:
414+
- /var/lib/mysql
415+
416+
trigger:
417+
branch:
418+
- master
419+
- stable*
420+
event:
421+
- pull_request
422+
- push
423+
386424
---
387425
kind: pipeline
388426
name: mysql8.0-php8.0

0 commit comments

Comments
 (0)