Skip to content

Commit

Permalink
Add cutting edge MariaDB 10.11 (LTS) and PHP 8.2 to drone
Browse files Browse the repository at this point in the history
Signed-off-by: Git'Fellow <[email protected]>
  • Loading branch information
solracsf authored and blizzz committed Oct 11, 2023
1 parent d9cbe10 commit f9320fa
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -384,6 +384,44 @@ trigger:
- pull_request
- push

---
kind: pipeline
name: mariadb10.11-php8.2

steps:
- name: submodules
image: ghcr.io/nextcloud/continuous-integration-alpine-git:latest
commands:
- git submodule update --init
- name: mariadb10.11-php8.2
image: ghcr.io/nextcloud/continuous-integration-php8.2:latest
commands:
- bash tests/drone-run-php-tests.sh || exit 0
- NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh mariadb

services:
- name: cache
image: ghcr.io/nextcloud/continuous-integration-redis:latest
- name: mariadb
image: ghcr.io/nextcloud/continuous-integration-mariadb-10.11:latest
environment:
MYSQL_ROOT_PASSWORD: owncloud
MYSQL_USER: oc_autotest
MYSQL_PASSWORD: owncloud
MYSQL_DATABASE: oc_autotest
command:
- --sql-mode=ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION
tmpfs:
- /var/lib/mysql

trigger:
branch:
- master
- stable*
event:
- pull_request
- push

---
kind: pipeline
name: mysql8.0-php8.0
Expand Down

0 comments on commit f9320fa

Please sign in to comment.