Skip to content

Commit

Permalink
CI: Remove uninteresting service versions
Browse files Browse the repository at this point in the history
Now, we just test the PHP and MySQL/MariaDB versions that have big
changes starting from the lowest versions we support up to the highest
versions we support.
  • Loading branch information
Deltik committed Oct 28, 2023
1 parent a3857a0 commit 9119ebf
Showing 1 changed file with 4 additions and 12 deletions.
16 changes: 4 additions & 12 deletions .github/workflows/test-unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,25 +18,15 @@ jobs:
interpreter:
- image: php:5.6
- image: php:7.0
- image: php:7.1
- image: php:7.2
- image: php:7.3
- image: php:7.4
- image: php:8.0
- image: php:8.1
db:
- image: mysql:5.5
- image: mysql:5.6
- image: mysql:5.7
- image: bitnami/mysql:8.0
- image: mariadb:10.0
- image: mariadb:10.1
- image: mariadb:10.2
- image: mariadb:10.3
- image: mariadb:10.4
- image: mariadb:10.5
- image: mariadb:10.6
- image: mariadb:10.10
- image: mariadb:10.11
- image: mariadb:11.0
runs-on: ubuntu-latest
container:
image: ${{ matrix.interpreter.image }}
Expand All @@ -45,7 +35,9 @@ jobs:
image: ${{ matrix.db.image }}
env:
MYSQL_ROOT_PASSWORD: 'Database Password for Continuous Integration'
MARIADB_ROOT_PASSWORD: 'Database Password for Continuous Integration'
MYSQL_DATABASE: 'app'
MARIADB_DATABASE: 'app'
MYSQL_AUTHENTICATION_PLUGIN: 'mysql_native_password'
MYSQL_CHARACTER_SET: 'utf8mb3'
options: >-
Expand Down

0 comments on commit 9119ebf

Please sign in to comment.