@@ -26,7 +26,7 @@ local composer(phpversion, params) = {
2626local phpunit_common(phpversion) = {
2727 name: 'PHPUnit' ,
2828 image: 'joomlaprojects/docker-images:php' + phpversion,
29- [if phpversion == '8.3 ' then 'failure' ]: 'ignore' ,
29+ [if phpversion == '8.4 ' then 'failure' ]: 'ignore' ,
3030 commands: [
3131 'vendor/bin/phpunit --configuration phpunit.xml.dist --testdox' ,
3232 ],
@@ -35,7 +35,7 @@ local phpunit_common(phpversion) = {
3535local phpunit_mysql(phpversion, driver) = {
3636 name: 'PHPUnit' ,
3737 image: 'joomlaprojects/docker-images:php' + phpversion,
38- [if phpversion == '8.3 ' then 'failure' ]: 'ignore' ,
38+ [if phpversion == '8.4 ' then 'failure' ]: 'ignore' ,
3939 commands: [
4040 'php --ri ' + driver + ' || true' ,
4141 'sleep 20' ,
@@ -46,7 +46,7 @@ local phpunit_mysql(phpversion, driver) = {
4646local phpunit(phpversion, driver) = {
4747 name: 'PHPUnit' ,
4848 image: 'joomlaprojects/docker-images:php' + phpversion,
49- [if phpversion == '8.3 ' then 'failure' ]: 'ignore' ,
49+ [if phpversion == '8.4 ' then 'failure' ]: 'ignore' ,
5050 commands: [
5151 'php --ri ' + driver + ' || true' ,
5252 'vendor/bin/phpunit --configuration phpunit.' + driver + '.xml.dist --testdox' ,
@@ -256,20 +256,29 @@ local pipeline_sqlsrv(phpversion, driver, dbversion, params) = {
256256 },
257257 pipeline_sqlite('8.1' , 'sqlite' , '--prefer-stable' ),
258258 pipeline_sqlite('8.2' , 'sqlite' , '--prefer-stable' ),
259+ pipeline_sqlite('8.3' , 'sqlite' , '--prefer-stable' ),
259260 pipeline_mysql('8.1' , 'mysql' , '5.7' , '--prefer-stable' ),
260261 pipeline_mysql('8.2' , 'mysql' , '5.7' , '--prefer-stable' ),
262+ pipeline_mysql('8.3' , 'mysql' , '5.7' , '--prefer-stable' ),
261263 pipeline_mysql('8.1' , 'mysql' , '8.0' , '--prefer-stable' ),
262264 pipeline_mysql('8.2' , 'mysql' , '8.0' , '--prefer-stable' ),
265+ pipeline_mysql('8.3' , 'mysql' , '8.0' , '--prefer-stable' ),
263266 pipeline_mysql('8.1' , 'mysqli' , '5.7' , '--prefer-stable' ),
264267 pipeline_mysql('8.2' , 'mysqli' , '5.7' , '--prefer-stable' ),
268+ pipeline_mysql('8.3' , 'mysqli' , '5.7' , '--prefer-stable' ),
265269 pipeline_mysql('8.1' , 'mysqli' , '8.0' , '--prefer-stable' ),
266270 pipeline_mysql('8.2' , 'mysqli' , '8.0' , '--prefer-stable' ),
271+ pipeline_mysql('8.3' , 'mysqli' , '8.0' , '--prefer-stable' ),
267272 pipeline_mariadb('8.1' , 'mariadb' , '10.2' , '--prefer-stable' ),
268273 pipeline_mariadb('8.2' , 'mariadb' , '10.2' , '--prefer-stable' ),
274+ pipeline_mariadb('8.3' , 'mariadb' , '10.2' , '--prefer-stable' ),
269275 pipeline_postgres('8.1' , 'pgsql' , '10' , '--prefer-stable' ),
270276 pipeline_postgres('8.2' , 'pgsql' , '10' , '--prefer-stable' ),
277+ pipeline_postgres('8.3' , 'pgsql' , '10' , '--prefer-stable' ),
271278 pipeline_postgres('8.1' , 'pgsql' , '11' , '--prefer-stable' ),
272279 pipeline_postgres('8.2' , 'pgsql' , '11' , '--prefer-stable' ),
280+ pipeline_postgres('8.3' , 'pgsql' , '11' , '--prefer-stable' ),
273281 pipeline_sqlsrv('8.1' , 'sqlsrv' , '2017-latest' , '--prefer-stable' ),
274282 pipeline_sqlsrv('8.2' , 'sqlsrv' , '2017-latest' , '--prefer-stable' ),
283+ pipeline_sqlsrv('8.3' , 'sqlsrv' , '2017-latest' , '--prefer-stable' ),
275284]
0 commit comments