From 79dc525f283443d40bfb08689d5e7a36282f8567 Mon Sep 17 00:00:00 2001 From: desrosj Date: Mon, 4 Jan 2021 19:48:05 +0000 Subject: [PATCH] Build/Test Tools: Change the frequency of code coverage reporting. Before the coverage reports were submitted to Codecov.io, HTML coverage reports were compressed into ZIP files and uploaded to the workflow run as an artifact. A weekly schedule was chosen to run this workflow because generating a coverage report is more time consuming, and the resulting reports are quite large (~150-200MB each). This changes the schedule for the code coverage workflow from weekly to daily and eliminates the ZIP artifacts that were previously generated. This will ensure the code coverage data found at https://codecov.io/gh/WordPress/wordpress-develop is relatively accurate on any given day of the week without needlessly consuming artifact storage. Props jorbin. See #50401, #52141. Built from https://develop.svn.wordpress.org/trunk@49931 git-svn-id: http://core.svn.wordpress.org/trunk@49630 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 5cd3ff0737..0674552dea 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.7-alpha-49930'; +$wp_version = '5.7-alpha-49931'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.