Skip to content

Commit

Permalink
Stop testing intermediary versions of platforms
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
greg0ire committed Nov 19, 2024
1 parent ff8e127 commit 9be2878
Showing 1 changed file with 6 additions and 20 deletions.
26 changes: 6 additions & 20 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ jobs:
- "8.3"
postgres-version:
- "9.4"
- "16"
- "11" # We have code specific to 10.0-12.0
- "17"
extension:
- "pgsql"
Expand Down Expand Up @@ -306,13 +306,10 @@ jobs:
mariadb-version:
# keep in sync with https://mariadb.org/about/#maintenance-policy
- "10.0" # Oldest version supported by DBAL
- "10.4" # LTS (Jun 2024)
- "10.5" # LTS (Jun 2025)
- "10.6" # LTS (Jul 2026)
- "10.11" # LTS (Feb 2028)
- "11.1" # STS (Aug 2024)
- "11.2" # STS (Nov 2024)
- "11.3" # STS (Feb 2025)
- "10.4" # We have code specific to 10.4.3-10.5.2
- "10.5" # We have code specific to 10.5.2-10.6.0
- "10.6" # We have code specific to 10.6.0-10.10.0
- "10.11" # We have code specific to ^10.10
- "11.4" # LTS (May 2029)
extension:
- "mysqli"
Expand Down Expand Up @@ -389,7 +386,7 @@ jobs:
- "8.3"
mysql-version:
- "5.7"
- "8.0"
- "8.0" # We have code specific to ^8.0
- "9.1"
extension:
- "mysqli"
Expand Down Expand Up @@ -419,17 +416,6 @@ jobs:
- php-version: "8.4"
mysql-version: "9.1"
extension: "pdo_mysql"
# Workaround for https://bugs.mysql.com/114876
- php-version: "8.3"
mysql-version: "8.4"
extension: "mysqli"
custom-entrypoint: >-
--entrypoint sh mysql:8.4 -c "exec docker-entrypoint.sh mysqld --mysql-native-password=ON"
- php-version: "8.3"
mysql-version: "8.4"
extension: "pdo_mysql"
custom-entrypoint: >-
--entrypoint sh mysql:8.4 -c "exec docker-entrypoint.sh mysqld --mysql-native-password=ON"

services:
mysql:
Expand Down

0 comments on commit 9be2878

Please sign in to comment.