File tree Expand file tree Collapse file tree 5 files changed +7
-4
lines changed
Expand file tree Collapse file tree 5 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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 ]
Original file line number Diff line number Diff line change @@ -110,6 +110,7 @@ services:
110110
111111 volumes :
112112 - ./:/var/www
113+ - ./tools/local-env/mysql-client.cnf:/etc/mysql/conf.d/no-ssl.cnf:ro
113114
114115 # Keeps the service alive.
115116 command : ' sleep infinity'
Original file line number Diff line number Diff line change 1+ [client]
2+ ssl =0
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ wait_on( {
4646 process . exit ( 1 ) ;
4747 } )
4848 . then ( ( ) => {
49- wp_cli ( 'db reset --yes' ) ;
49+ wp_cli ( 'db reset --yes --defaults ' ) ;
5050 const installCommand = process . env . LOCAL_MULTISITE === 'true' ? 'multisite-install' : 'install' ;
5151 wp_cli ( `core ${ installCommand } --title="WordPress Develop" --admin_user=admin --admin_password=password [email protected] --skip-email --url=http://localhost:${ process . env . LOCAL_PORT } ` ) ; 5252 } )
You can’t perform that action at this time.
0 commit comments