Skip to content

Commit 9323214

Browse files
committed
Stop testing intermediary versions of platforms
It is unlikely that we are going to catch a bug specific to it. Versions ranges that are explicitly checked against in the code are kept.
1 parent ff8e127 commit 9323214

File tree

1 file changed

+5
-20
lines changed

1 file changed

+5
-20
lines changed

.github/workflows/continuous-integration.yml

+5-20
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ jobs:
229229
- "8.3"
230230
postgres-version:
231231
- "9.4"
232-
- "16"
232+
- "11" # We have code specific to 10.0-12.0
233233
- "17"
234234
extension:
235235
- "pgsql"
@@ -306,13 +306,9 @@ jobs:
306306
mariadb-version:
307307
# keep in sync with https://mariadb.org/about/#maintenance-policy
308308
- "10.0" # Oldest version supported by DBAL
309-
- "10.4" # LTS (Jun 2024)
310-
- "10.5" # LTS (Jun 2025)
311-
- "10.6" # LTS (Jul 2026)
312-
- "10.11" # LTS (Feb 2028)
313-
- "11.1" # STS (Aug 2024)
314-
- "11.2" # STS (Nov 2024)
315-
- "11.3" # STS (Feb 2025)
309+
- "10.5" # We have code specific to 10.4.3-10.6.0
310+
- "10.6" # We have code specific to 10.6.0-10.10.0
311+
- "10.11" # We have code specific to ^10.10
316312
- "11.4" # LTS (May 2029)
317313
extension:
318314
- "mysqli"
@@ -389,7 +385,7 @@ jobs:
389385
- "8.3"
390386
mysql-version:
391387
- "5.7"
392-
- "8.0"
388+
- "8.0" # We have code specific to ^8.0
393389
- "9.1"
394390
extension:
395391
- "mysqli"
@@ -419,17 +415,6 @@ jobs:
419415
- php-version: "8.4"
420416
mysql-version: "9.1"
421417
extension: "pdo_mysql"
422-
# Workaround for https://bugs.mysql.com/114876
423-
- php-version: "8.3"
424-
mysql-version: "8.4"
425-
extension: "mysqli"
426-
custom-entrypoint: >-
427-
--entrypoint sh mysql:8.4 -c "exec docker-entrypoint.sh mysqld --mysql-native-password=ON"
428-
- php-version: "8.3"
429-
mysql-version: "8.4"
430-
extension: "pdo_mysql"
431-
custom-entrypoint: >-
432-
--entrypoint sh mysql:8.4 -c "exec docker-entrypoint.sh mysqld --mysql-native-password=ON"
433418

434419
services:
435420
mysql:

0 commit comments

Comments
 (0)