Skip to content

Commit b7fbfdd

Browse files
committed
Merge remote-tracking branch 'upstream/trunk' into trunk
2 parents dabce6b + 31cac36 commit b7fbfdd

26 files changed

+429
-197
lines changed

.github/workflows/local-docker-environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ jobs:
9292
fail-fast: false
9393
matrix:
9494
os: [ ubuntu-24.04 ]
95-
memcached: [ false ]
95+
memcached: [ false, true ]
9696
php: ${{ fromJSON( needs.build-test-matrix.outputs.php-versions ) }}
9797
db-version: ${{ fromJSON( needs.build-test-matrix.outputs.mysql-versions ) }}
9898

.github/workflows/performance.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ jobs:
101101
strategy:
102102
fail-fast: false
103103
matrix:
104-
memcached: [ false ]
104+
memcached: [ false, true ]
105105
multisite: [ true, false ]
106106
subject: ${{ fromJson( needs.determine-matrix.outputs.subjects ) }}
107107
with:
@@ -119,7 +119,7 @@ jobs:
119119
strategy:
120120
fail-fast: false
121121
matrix:
122-
memcached: [ false ]
122+
memcached: [ false, true ]
123123
multisite: [ true, false ]
124124
# A matrix value is needed in the 'name' directive for proper grouping in the GitHub UI.
125125
label: [ Compare ]

.github/workflows/phpunit-tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,10 @@ on:
3030
- 'Gruntfile.js'
3131
# These files configure Composer. Changes could affect the outcome.
3232
- 'composer.*'
33-
# This files affect the phpunit tests. Changes could affect the outcome.
33+
# These files affect the phpunit tests. Changes could affect the outcome.
3434
- 'tests/phpunit/**'
35+
- 'tests/phpunit/multisite.xml'
36+
- 'phpunit.xml.dist'
3537
# Confirm any changes to relevant workflow files.
3638
- '.github/workflows/phpunit-tests.yml'
3739
- '.github/workflows/reusable-phpunit-tests-*.yml'

.github/workflows/reusable-end-to-end-tests.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -81,12 +81,6 @@ jobs:
8181
show-progress: ${{ runner.debug == '1' && 'true' || 'false' }}
8282
persist-credentials: false
8383

84-
- name: Create a Docker override file
85-
if: ${{ contains( fromJSON('["8.3", "8.4"]'), inputs.php-version ) }}
86-
env:
87-
PHP_VERSION: ${{ inputs.php-version }}
88-
run: cp "tools/local-env/php-$PHP_VERSION-docker-compose.override.yml" docker-compose.override.yml
89-
9084
- name: Set up Node.js
9185
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4.3.0
9286
with:

.github/workflows/reusable-performance-test-v2.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -121,12 +121,6 @@ jobs:
121121
fetch-depth: ${{ github.event_name == 'workflow_dispatch' && '2' || '1' }}
122122
persist-credentials: false
123123

124-
- name: Create a Docker override file
125-
if: ${{ contains( fromJSON('["8.3", "8.4"]'), inputs.php-version ) }}
126-
env:
127-
PHP_VERSION: ${{ inputs.php-version }}
128-
run: cp "tools/local-env/php-$PHP_VERSION-docker-compose.override.yml" docker-compose.override.yml
129-
130124
- name: Set up Node.js
131125
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4.3.0
132126
with:

.github/workflows/reusable-phpunit-tests-v3.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -136,12 +136,6 @@ jobs:
136136
show-progress: ${{ runner.debug == '1' && 'true' || 'false' }}
137137
persist-credentials: false
138138

139-
- name: Create a Docker override file
140-
if: ${{ contains( fromJSON('["8.3", "8.4"]'), inputs.php ) }}
141-
env:
142-
PHP_VERSION: ${{ inputs.php }}
143-
run: cp "tools/local-env/php-${{ env.PHP_VERSION }}-docker-compose.override.yml" docker-compose.override.yml
144-
145139
- name: Set up Node.js
146140
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4.3.0
147141
with:

.github/workflows/reusable-test-local-docker-environment-v1.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -91,12 +91,6 @@ jobs:
9191
show-progress: ${{ runner.debug == '1' && 'true' || 'false' }}
9292
persist-credentials: false
9393

94-
- name: Create a Docker override file
95-
if: ${{ contains( fromJSON('["8.3", "8.4"]'), inputs.php ) }}
96-
env:
97-
PHP_VERSION: ${{ inputs.php }}
98-
run: cp "tools/local-env/php-$PHP_VERSION-docker-compose.override.yml" docker-compose.override.yml
99-
10094
- name: Set up Node.js
10195
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4.3.0
10296
with:

phpunit.xml.dist

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
colors="true"
77
beStrictAboutTestsThatDoNotTestAnything="true"
88
beStrictAboutOutputDuringTests="true"
9+
failOnRisky="true"
910
convertErrorsToExceptions="true"
1011
convertWarningsToExceptions="true"
1112
convertNoticesToExceptions="true"

src/wp-content/themes/twentyeleven/footer.php

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,14 @@
2525
?>
2626

2727
<div id="site-generator">
28-
<?php do_action( 'twentyeleven_credits' ); ?>
28+
<?php
29+
/**
30+
* Fires before the Twenty Eleven footer text for footer customization.
31+
*
32+
* @since Twenty Eleven 1.0
33+
*/
34+
do_action( 'twentyeleven_credits' );
35+
?>
2936
<?php
3037
if ( function_exists( 'the_privacy_policy_link' ) ) {
3138
the_privacy_policy_link( '', '<span role="separator" aria-hidden="true"></span>' );

src/wp-content/themes/twentyfourteen/footer.php

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,14 @@
1818
<?php get_sidebar( 'footer' ); ?>
1919

2020
<div class="site-info">
21-
<?php do_action( 'twentyfourteen_credits' ); ?>
21+
<?php
22+
/**
23+
* Fires before the Twenty Fourteen footer text for footer customization.
24+
*
25+
* @since Twenty Fourteen 1.0
26+
*/
27+
do_action( 'twentyfourteen_credits' );
28+
?>
2229
<?php
2330
if ( function_exists( 'the_privacy_policy_link' ) ) {
2431
the_privacy_policy_link( '', '<span role="separator" aria-hidden="true"></span>' );

0 commit comments

Comments
 (0)