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
5 changes: 4 additions & 1 deletion .github/files/generate-ci-matrix.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,9 @@
'timeout' => 20, // 2022-01-25: 5.6 tests have started timing out at 15 minutes. Previously: Successful runs seem to take ~8 minutes for PHP 5.6 and for the 7.4 master run, ~5.5-6 for 7.x and 8.0.
);
}
// Merge this into the above once we decide PHP 8.1 is stable and WP latest works with 8.1.
// Uncomment this once WP master finally works with 8.1. Then merge into the above once WP latest does and we've cleaned up any problems in our own code.
// phpcs:ignore Squiz.PHP.CommentedOutCode.Found, Squiz.Commenting.BlockComment.NoEmptyLineBefore
/*
$matrix[] = array(
'name' => 'PHP tests: PHP 8.1 WP master',
'script' => 'test-php',
Expand All @@ -70,6 +72,7 @@
'timeout' => 15,
'experimental' => true,
);
*/
foreach ( array( 'previous', 'master' ) as $wp ) {
$matrix[] = array(
'name' => "PHP tests: PHP {$versions['PHP_VERSION']} WP $wp",
Expand Down