From 7abbffa346d2541b0543c810cbb9bc7713c99015 Mon Sep 17 00:00:00 2001 From: desrosj Date: Thu, 25 Feb 2021 14:05:04 +0000 Subject: [PATCH] Build/Test Tools: Disable `fail-fast` for PHPUnit testing. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit In GitHub Actions, there is a `fail-fast` option that will cancel all incomplete jobs within a workflow as soon as one failure is encountered. This defaults to `true`. This is great for alerting you of a failure faster, but does not give you the full picture of what is failing. For example, it’s possible that there is a failing test on 2 versions of PHP, but not others. If `fail-fast` is enabled, it’s impossible to know this. Even with `fail-fast` disabled, the workflow will still report a failure if one or more jobs produce a failing result. Props johbillion, jorbin. Fixes #52612. Built from https://develop.svn.wordpress.org/trunk@50435 git-svn-id: http://core.svn.wordpress.org/trunk@50046 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/version.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/version.php b/wp-includes/version.php index 6fe449ed85..ea5af99128 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.8-alpha-50434'; +$wp_version = '5.8-alpha-50435'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.