Skip to content

Commit f6d5a85

Browse files
committed
Build/Test Tools: Test 6.9 in upgrade testing workflows.
This sets 6.9 as the most recent branch of WordPress in the upgrade testing workflows. Props jorbin. See #64227, #64235. git-svn-id: https://develop.svn.wordpress.org/trunk@62042 602fd350-edb4-49c9-b593-d223f7449a82
1 parent a8b3395 commit f6d5a85

3 files changed

Lines changed: 13 additions & 5 deletions

File tree

.github/workflows/test-old-branches.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ on:
2525
permissions: {}
2626

2727
env:
28-
CURRENTLY_SUPPORTED_BRANCH: '6.8'
28+
CURRENTLY_SUPPORTED_BRANCH: '6.9'
2929

3030
jobs:
3131
dispatch-workflows-for-old-branches:

.github/workflows/upgrade-develop-testing.yml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,15 @@ jobs:
5151
permissions:
5252
contents: read
5353

54-
# Run upgrade tests for the current branch.
54+
# Because the number of jobs spawned can quickly balloon out of control, the following methodology is applied when
55+
# building out the matrix below:
56+
#
57+
# - The two most recent releases of WordPress are always tested.
58+
# - After a branch is created, the pre-release version is also added.
59+
# - The oldest version of WordPress receiving security updates as a courtesy that also runs on a PHP version supported by trunk
60+
# should always be tested.
61+
# - PHP and DB versions are kept to a minimum. In general this should be the highest and lowest supported versions of each with excludes
62+
# being updated to keep the matrix as small as is reasonable.
5563
upgrade-tests-develop:
5664
name: Upgrade from ${{ matrix.wp }}
5765
uses: ./.github/workflows/reusable-upgrade-testing.yml
@@ -67,7 +75,7 @@ jobs:
6775
db-type: [ 'mysql' ]
6876
db-version: [ '5.7', '8.4' ]
6977
# WordPress 5.3 is the oldest version that supports PHP 7.4.
70-
wp: [ '5.3', '6.7', '6.8', '6.9-RC1' ]
78+
wp: [ '5.3', '6.8', '6.9' ]
7179
multisite: [ false, true ]
7280
with:
7381
os: ${{ matrix.os }}
@@ -93,7 +101,7 @@ jobs:
93101
php: [ '7.4', '8.4' ]
94102
db-type: [ 'mysql' ]
95103
db-version: [ '8.4' ]
96-
wp: [ '6.7', '6.8' ]
104+
wp: [ '6.8', '6.9' ]
97105
multisite: [ false, true ]
98106
with:
99107
os: ${{ matrix.os }}

.github/workflows/upgrade-testing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
php: [ '7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5' ]
7272
db-type: [ 'mysql' ]
7373
db-version: [ '5.7', '8.0', '8.4', '9.6' ]
74-
wp: [ '6.7', '6.8' ]
74+
wp: [ '6.8', '6.9' ]
7575
multisite: [ false, true ]
7676
with:
7777
os: ${{ matrix.os }}

0 commit comments

Comments
 (0)