]> source.dussan.org Git - nextcloud-server.git/commitdiff
[stable23] add mariadb 10.6 33606/head
authorszaimen <szaimen@e.mail.de>
Thu, 18 Aug 2022 12:06:10 +0000 (14:06 +0200)
committerszaimen <szaimen@e.mail.de>
Sun, 21 Aug 2022 12:12:29 +0000 (14:12 +0200)
Signed-off-by: szaimen <szaimen@e.mail.de>
.drone.yml

index eda086a19619e7ba129cd2e621661058f37655b4..547e873c1ef7143510da87d65a2521da73e534e6 100644 (file)
@@ -436,6 +436,42 @@ trigger:
     - pull_request
     - push
 
+---
+kind: pipeline
+name: mariadb10.6-php8.0
+
+steps:
+- name: submodules
+  image: ghcr.io/nextcloud/continuous-integration-alpine-git:latest
+  commands:
+    - git submodule update --init
+- name: mariadb10.6-php8.0
+  image: ghcr.io/nextcloud/continuous-integration-php8.0: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.6:latest
+  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.4