Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Drone: drop MariaDB 10.1 (EOL) add MariaDB 10.5
- Drop MariaDB 10.1 (EOL)
- Add MariaDB 10.5 GA
  • Loading branch information
solracsf authored Apr 16, 2021
commit 70219851805179cf85db94fcefc01493467251e3
40 changes: 20 additions & 20 deletions .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -290,14 +290,14 @@ trigger:

---
kind: pipeline
name: mariadb10.1-php7.3
name: 10.2-php7.3

steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: mariadb10.1-php7.3
- name: mariadb10.2-php7.3
image: nextcloudci/php7.3:php7.3-5
commands:
- bash tests/drone-run-php-tests.sh || exit 0
Expand All @@ -307,7 +307,7 @@ services:
- name: cache
image: redis
- name: mariadb
image: mariadb:10.1
image: mariadb:10.2
environment:
MYSQL_ROOT_PASSWORD: owncloud
MYSQL_USER: oc_autotest
Expand All @@ -321,19 +321,18 @@ trigger:
- master
- stable*
event:
- pull_request
- push

---
kind: pipeline
name: mariadb10.2-php7.3
name: mariadb10.3-php7.3

steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: mariadb10.2-php7.3
- name: mariadb10.3-php7.3
image: nextcloudci/php7.3:php7.3-5
commands:
- bash tests/drone-run-php-tests.sh || exit 0
Expand All @@ -343,7 +342,7 @@ services:
- name: cache
image: redis
- name: mariadb
image: mariadb:10.2
image: mariadb:10.3
environment:
MYSQL_ROOT_PASSWORD: owncloud
MYSQL_USER: oc_autotest
Expand All @@ -361,24 +360,30 @@ trigger:

---
kind: pipeline
name: mariadb10.3-php7.3
name: mariadb10.4-php7.4
#name: mariadb10.4-php8.0

steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: mariadb10.3-php7.3
image: nextcloudci/php7.3:php7.3-5
- name: mariadb10.4-php7.4
image: nextcloudci/php7.4:php7.4-3
commands:
- bash tests/drone-run-php-tests.sh || exit 0
- NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh mariadb
#- name: mariadb10.4-php8.0
# image: nextcloudci/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: redis
- name: mariadb
image: mariadb:10.3
image: mariadb:10.4
environment:
MYSQL_ROOT_PASSWORD: owncloud
MYSQL_USER: oc_autotest
Expand All @@ -392,34 +397,29 @@ trigger:
- master
- stable*
event:
- pull_request
- push

---
kind: pipeline
name: mariadb10.4-php7.4
#name: mariadb10.4-php8.0
name: mariadb10.5-php7.4

steps:
- name: submodules
image: docker:git
commands:
- git submodule update --init
- name: mariadb10.4-php7.4
- name: mariadb10.5-php7.4
image: nextcloudci/php7.4:php7.4-3
commands:
- bash tests/drone-run-php-tests.sh || exit 0
- NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh mariadb
#- name: mariadb10.4-php8.0
# image: nextcloudci/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: redis
- name: mariadb
image: mariadb:10.4
image: mariadb:10.5
environment:
MYSQL_ROOT_PASSWORD: owncloud
MYSQL_USER: oc_autotest
Expand Down