Merge pull request #53898 from nextcloud/ci-mariadb-118

ci: test against MariaDB 11.8 (latest LTS)
pull/54009/head
Joas Schilling 2025-07-28 08:10:05 +07:00 committed by GitHub
commit 3ccb3160b4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

@ -60,13 +60,13 @@ jobs:
fail-fast: false fail-fast: false
matrix: matrix:
php-versions: ['8.1'] php-versions: ['8.1']
mariadb-versions: ['10.3', '10.6', '10.11', '11.4'] mariadb-versions: ['10.3', '10.6', '10.11', '11.4', '11.8']
include: include:
- php-versions: '8.3' - php-versions: '8.3'
mariadb-versions: '10.11' mariadb-versions: '10.11'
coverage: ${{ github.event_name != 'pull_request' }} coverage: ${{ github.event_name != 'pull_request' }}
- php-versions: '8.4' - php-versions: '8.4'
mariadb-versions: '11.4' mariadb-versions: '11.8'
name: MariaDB ${{ matrix.mariadb-versions }} (PHP ${{ matrix.php-versions }}) - database tests name: MariaDB ${{ matrix.mariadb-versions }} (PHP ${{ matrix.php-versions }}) - database tests

@ -21,7 +21,7 @@ use OCP\SetupCheck\SetupResult;
class SupportedDatabase implements ISetupCheck { class SupportedDatabase implements ISetupCheck {
private const MIN_MARIADB = '10.6'; private const MIN_MARIADB = '10.6';
private const MAX_MARIADB = '11.4'; private const MAX_MARIADB = '11.8';
private const MIN_MYSQL = '8.0'; private const MIN_MYSQL = '8.0';
private const MAX_MYSQL = '8.4'; private const MAX_MYSQL = '8.4';
private const MIN_POSTGRES = '13'; private const MIN_POSTGRES = '13';