Make WordPress Core

Changeset 60346

Timestamp:
06/24/2025 11:55:04 PM (4 months ago)
Author:
desrosj
Message:

Build/Test Tools: Run PHPUnit test suite using MariaDB 11.8.

The latest LTS version of MariaDB (11.8) was released on June 8, 2025.

Though it does not yet account for the 1% of WordPress installs criteria currently documented in the workflow, the most recent LTS version should always be tested against.

Props johnbillion.
See #63170.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/.github/workflows/phpunit-tests.yml

    r60318 r60346  
    130130  #
    131131  # All LTS versions of MariaDB supported by WordPress with greater than 1% usage according to w.org/stats should be
    132   # tested. The exception to this rule is version 5.5. That release was intended as a drop-in replacement for MySQL.
    133   # Because the MySQL 5.5 Docker containers do not work, this ensures some level of MySQL 5.5 testing.
     132  # tested. The exceptions to this rule are the most recent LTS and version 5.5.
     133  #
     134  # The 5.5 release was intended as a drop-in replacement for MySQL. Because the MySQL 5.5 Docker containers do not
     135  # work, this ensures some level of MySQL 5.5 testing.
    134136  #
    135137  test-with-mariadb:
     
    146148        php: [ '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4' ]
    147149        db-type: [ 'mariadb' ]
    148         db-version: [ '5.5', '10.3', '10.4', '10.5', '10.6', '10.11', '11.4' ]
     150        db-version: [ '5.5', '10.3', '10.4', '10.5', '10.6', '10.11', '11.4', '11.8' ]
    149151        multisite: [ false, true ]
    150152        memcached: [ false ]
     
    155157          php: '8.3'
    156158          db-type: 'mariadb'
    157           db-version: '11.4'
     159          db-version: '11.8'
    158160          multisite: false
    159161          memcached: true
     
    161163          php: '8.3'
    162164          db-type: 'mariadb'
    163           db-version: '11.4'
     165          db-version: '11.8'
    164166          multisite: true
    165167          memcached: true
Note: See TracChangeset for help on using the changeset viewer.