Skip to content

Commit 5adbb3e

Browse files
committed
Build/Test Tools: Use newer versions for include jobs.
The `include` part of the strategy for the PHPUnit testing workflow defines a few testing configurations outside of the matrix. The versions of PHP and MySQL used in these have not been updated for some time. This was mostly due to various incompatibilities that have since been resolved. Props peterwilsoncc, johnbillion. See #62221. git-svn-id: https://develop.svn.wordpress.org/trunk@59490 602fd350-edb4-49c9-b593-d223f7449a82
1 parent e585c95 commit 5adbb3e

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

.github/workflows/phpunit-tests.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -53,40 +53,40 @@ jobs:
5353
memcached: [ false ]
5454

5555
include:
56-
# Include jobs for PHP 7.4 with memcached.
56+
# Include jobs that test with memcached.
5757
- os: ubuntu-latest
58-
php: '7.4'
58+
php: '8.3'
5959
db-type: 'mysql'
60-
db-version: '5.7'
60+
db-version: '8.4'
6161
tests-domain: 'example.org'
6262
multisite: false
6363
memcached: true
6464
- os: ubuntu-latest
65-
php: '7.4'
65+
php: '8.3'
6666
db-type: 'mysql'
67-
db-version: '5.7'
67+
db-version: '8.4'
6868
tests-domain: 'example.org'
6969
multisite: true
7070
memcached: true
7171
# Include jobs with a port on the test domain for both single and multisite.
7272
- os: ubuntu-latest
73-
php: '7.4'
73+
php: '8.4'
7474
db-type: 'mysql'
75-
db-version: '5.7'
75+
db-version: '8.4'
7676
tests-domain: 'example.org:8889'
7777
multisite: false
7878
memcached: false
7979
- os: ubuntu-latest
80-
php: '7.4'
80+
php: '8.4'
8181
db-type: 'mysql'
82-
db-version: '5.7'
82+
db-version: '8.4'
8383
tests-domain: 'example.org:8889'
8484
multisite: true
8585
memcached: false
8686
# Report test results to the Host Test Results.
8787
- os: ubuntu-latest
8888
db-type: 'mysql'
89-
db-version: '8.0'
89+
db-version: '8.4'
9090
tests-domain: 'example.org'
9191
multisite: false
9292
memcached: false
@@ -131,15 +131,15 @@ jobs:
131131
memcached: [ false ]
132132

133133
include:
134-
# Include jobs for PHP 7.4 with memcached.
134+
# Include jobs that test with memcached.
135135
- os: ubuntu-latest
136-
php: '7.4'
136+
php: '8.3'
137137
db-type: 'mariadb'
138138
db-version: '11.2'
139139
multisite: false
140140
memcached: true
141141
- os: ubuntu-latest
142-
php: '7.4'
142+
php: '8.3'
143143
db-type: 'mariadb'
144144
db-version: '11.2'
145145
multisite: true

0 commit comments

Comments
 (0)