From b38a6cf9761a523a6b8a5e18fec18227a4be4a5e Mon Sep 17 00:00:00 2001 From: Jonathan Desrosiers Date: Mon, 4 Dec 2023 18:51:01 +0000 Subject: [PATCH] Build/Test Tools: Update the MariaDB test strategy matrix. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This updates the test strategy matrix in the PHPUnit test GitHub Actions workflow to include the most recent MariaDB release, 11.2. While 11.0 and 11.1 are still maintained, all three are short-term stable releases, which see support dropped after 1 year. Until a larger discussion around how the project supports database software releases with shorter support windows takes place (short-term in MariaDB or “innovation” releases in MySQL), testing only against the latest short-term release should be sufficient. Props johnbillion, l1nuxjedi. See #59806. git-svn-id: https://develop.svn.wordpress.org/trunk@57152 602fd350-edb4-49c9-b593-d223f7449a82 --- .github/workflows/phpunit-tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/phpunit-tests.yml b/.github/workflows/phpunit-tests.yml index ef23a72a10..d9bc028b8e 100644 --- a/.github/workflows/phpunit-tests.yml +++ b/.github/workflows/phpunit-tests.yml @@ -99,7 +99,7 @@ jobs: os: [ ubuntu-latest ] php: [ '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3' ] db-type: [ 'mariadb' ] - db-version: [ '10.4', '10.6', '10.11', '11.0' ] + db-version: [ '10.4', '10.6', '10.11', '11.2' ] multisite: [ false, true ] memcached: [ false ] @@ -108,13 +108,13 @@ jobs: - os: ubuntu-latest php: '7.4' db-type: 'mariadb' - db-version: '11.0' + db-version: '11.2' multisite: false memcached: true - os: ubuntu-latest php: '7.4' db-type: 'mariadb' - db-version: '11.0' + db-version: '11.2' multisite: true memcached: true with: