Skip to content
Merged
Changes from all commits
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
26 changes: 17 additions & 9 deletions .github/workflows/reusable-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -285,11 +285,6 @@ jobs:
"mysql": "mariadb-11.4",
"dbtype": "mariadb"
},
{
"php": "nightly",
"wp": "trunk",
"mysql": "mysql-8.0"
},
{
"php": "nightly",
"wp": "trunk",
Expand All @@ -301,10 +296,22 @@ jobs:
"dbtype": "sqlite"
},
{
"php": "nightly",
"php": "7.2",
"wp": "4.9",
"dbtype": "sqlite",
"object_cache": "sqlite"
},
{
"php": "8.5",
"wp": "latest",
"dbtype": "sqlite",
"object_cache": "sqlite"
},
{
"php": "8.5",
"wp": "trunk",
"mysql": "mariadb-11.4",
"dbtype": "mariadb"
"dbtype": "sqlite",
"object_cache": "sqlite"
}
]
}
Expand Down Expand Up @@ -485,7 +492,7 @@ jobs:
functional:
needs: prepare-functional
if: ${{ needs.prepare-functional.outputs.matrix != '' }}
name: Functional - WP ${{ matrix.wp }} on PHP ${{ matrix.php }} with ${{ matrix.dbtype != 'sqlite' && matrix.mysql || 'SQLite' }}${{ matrix.coverage && ' (with coverage)' || '' }} ${{ startsWith( matrix.os, 'windows' ) && '(Windows)' || '' }} ${{ startsWith( matrix.os, 'macos' ) && '(macOS)' || '' }}
name: PHP ${{ matrix.php }} / WP ${{ matrix.wp }} on ${{ matrix.dbtype != 'sqlite' && matrix.mysql || 'SQLite' }}${{ matrix.object_cache == 'sqlite' && ' (SQLite Object Cache)' || '' }}${{ matrix.coverage && ' (with coverage)' || '' }} ${{ startsWith( matrix.os, 'windows' ) && '(Windows)' || '' }} ${{ startsWith( matrix.os, 'macos' ) && '(macOS)' || '' }}
strategy:
fail-fast: false
matrix: ${{ fromJson(needs.prepare-functional.outputs.matrix) }}
Expand All @@ -502,6 +509,7 @@ jobs:
WP_CLI_TEST_DBUSER: wp_cli_test
WP_CLI_TEST_DBPASS: password1
WP_CLI_TEST_DBHOST: 127.0.0.1:3306
WP_CLI_TEST_OBJECT_CACHE: ${{ matrix.object_cache }}

steps:
- name: Check out source code
Expand Down
Loading