From d9567c286b8ef2d303180154fe31e9eb8f96c21c Mon Sep 17 00:00:00 2001 From: Git'Fellow <12234510+solracsf@users.noreply.github.com> Date: Tue, 9 May 2023 23:11:23 +0200 Subject: [PATCH] Add cutting edge MariaDB 10.11 (LTS) and PHP 8.2 to drone Signed-off-by: Git'Fellow <12234510+solracsf@users.noreply.github.com> --- .drone.yml | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/.drone.yml b/.drone.yml index 3507d306c10d9..a3625b0f0f7b9 100644 --- a/.drone.yml +++ b/.drone.yml @@ -383,6 +383,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