mirrored from git://develop.git.wordpress.org/
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Build/Test Tools: Make the install testing workflow more flexible.
In [56661], a new GitHub Actions workflow was introduced that focused on running some minimal installation tests for a version of WordPress for every PHP and MySQL combination. This workflow has tested well, but lacks flexibility and possesses one flaw: tests are only ever performed with currently supported versions, even if the version being tested had a different support policy. This updates the workflow to be more flexible, allowing all versions of WordPress currently receiving security fixes (back through 4.1) to be tested under the correct support policy. Additionally, the workflow can now run against the `nightly` build of WordPress. This replaces `latest` as the new default. This allows the tests to be run at any point during a release cycle without the need for an officially tagged version. Props jorbin, joemcgill, costdev. See #58977. git-svn-id: https://develop.svn.wordpress.org/trunk@57218 602fd350-edb4-49c9-b593-d223f7449a82
- Loading branch information
Showing
3 changed files
with
482 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,188 @@ | ||
{ | ||
"6-5": [ | ||
"8.2", | ||
"8.0", | ||
"5.7", | ||
"5.6", | ||
"5.5" | ||
], | ||
"6-4": [ | ||
"8.0", | ||
"5.7", | ||
"5.6", | ||
"5.5", | ||
"5.1", | ||
"5.0" | ||
], | ||
"6-3": [ | ||
"8.0", | ||
"5.7", | ||
"5.6", | ||
"5.5", | ||
"5.1", | ||
"5.0" | ||
], | ||
"6-2": [ | ||
"8.0", | ||
"5.7", | ||
"5.6", | ||
"5.5", | ||
"5.1", | ||
"5.0" | ||
], | ||
"6-1": [ | ||
"8.0", | ||
"5.7", | ||
"5.6", | ||
"5.5", | ||
"5.1", | ||
"5.0" | ||
], | ||
"6-0": [ | ||
"8.0", | ||
"5.7", | ||
"5.6", | ||
"5.5", | ||
"5.1", | ||
"5.0" | ||
], | ||
"5-9": [ | ||
"8.0", | ||
"5.7", | ||
"5.6", | ||
"5.5", | ||
"5.1", | ||
"5.0" | ||
], | ||
"5-8": [ | ||
"8.0", | ||
"5.7", | ||
"5.6", | ||
"5.5", | ||
"5.1", | ||
"5.0" | ||
], | ||
"5-7": [ | ||
"8.0", | ||
"5.7", | ||
"5.6", | ||
"5.5", | ||
"5.1", | ||
"5.0" | ||
], | ||
"5-6": [ | ||
"8.0", | ||
"5.7", | ||
"5.6", | ||
"5.5", | ||
"5.1", | ||
"5.0" | ||
], | ||
"5-5": [ | ||
"8.0", | ||
"5.7", | ||
"5.6", | ||
"5.5", | ||
"5.1", | ||
"5.0" | ||
], | ||
"5-4": [ | ||
"8.0", | ||
"5.7", | ||
"5.6", | ||
"5.5", | ||
"5.1", | ||
"5.0" | ||
], | ||
"5-3": [ | ||
"8.0", | ||
"5.7", | ||
"5.6", | ||
"5.5", | ||
"5.1", | ||
"5.0" | ||
], | ||
"5-2": [ | ||
"8.0", | ||
"5.7", | ||
"5.6", | ||
"5.5", | ||
"5.1", | ||
"5.0" | ||
], | ||
"5-1": [ | ||
"5.7", | ||
"5.6", | ||
"5.5" | ||
], | ||
"5-0": [ | ||
"5.7", | ||
"5.6", | ||
"5.5", | ||
"5.1", | ||
"5.0" | ||
], | ||
"4-9": [ | ||
"5.7", | ||
"5.6", | ||
"5.5", | ||
"5.1", | ||
"5.0" | ||
], | ||
"4-8": [ | ||
"5.7", | ||
"5.6", | ||
"5.5", | ||
"5.1", | ||
"5.0" | ||
], | ||
"4-7": [ | ||
"5.7", | ||
"5.6", | ||
"5.5", | ||
"5.1", | ||
"5.0" | ||
], | ||
"4-6": [ | ||
"5.7", | ||
"5.6", | ||
"5.5", | ||
"5.1", | ||
"5.0" | ||
], | ||
"4-5": [ | ||
"5.7", | ||
"5.6", | ||
"5.5", | ||
"5.1", | ||
"5.0" | ||
], | ||
"4-4": [ | ||
"5.7", | ||
"5.6", | ||
"5.5", | ||
"5.1", | ||
"5.0" | ||
], | ||
"4-3": [ | ||
"5.7", | ||
"5.6", | ||
"5.5", | ||
"5.1", | ||
"5.0" | ||
], | ||
"4-2": [ | ||
"5.7", | ||
"5.6", | ||
"5.5", | ||
"5.1", | ||
"5.0" | ||
], | ||
"4-1": [ | ||
"5.7", | ||
"5.6", | ||
"5.5", | ||
"5.1", | ||
"5.0" | ||
] | ||
} |
Oops, something went wrong.