Skip to content

Commit bf5479d

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 bf5479d

File tree

1 file changed

+4
-20
lines changed

1 file changed

+4
-20
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 4 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,6 @@ jobs:
229229
- "8.3"
230230
postgres-version:
231231
- "9.4"
232-
- "16"
233232
- "17"
234233
extension:
235234
- "pgsql"
@@ -306,13 +305,9 @@ jobs:
306305
mariadb-version:
307306
# keep in sync with https://mariadb.org/about/#maintenance-policy
308307
- "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)
308+
- "10.5" # We have code specific to 10.4.3-10.6.0
309+
- "10.6" # We have code specific to 10.6.0-10.10.0
310+
- "10.11" # We have code specific to ^10.10
316311
- "11.4" # LTS (May 2029)
317312
extension:
318313
- "mysqli"
@@ -389,7 +384,7 @@ jobs:
389384
- "8.3"
390385
mysql-version:
391386
- "5.7"
392-
- "8.0"
387+
- "8.0" # We have code specific to ^8.0
393388
- "9.1"
394389
extension:
395390
- "mysqli"
@@ -419,17 +414,6 @@ jobs:
419414
- php-version: "8.4"
420415
mysql-version: "9.1"
421416
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"
433417

434418
services:
435419
mysql:

0 commit comments

Comments
 (0)