Skip to content

Commit

Permalink
Add MariaDB 11.4 to testing and MySQL 8.4, and exclude MySQL from the…
Browse files Browse the repository at this point in the history
… SSL test
  • Loading branch information
williamdes committed Jan 24, 2025
1 parent 7d51494 commit 6515c2b
Showing 1 changed file with 35 additions and 2 deletions.
37 changes: 35 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,41 @@ jobs:
strategy:
fail-fast: false
matrix:
database-image: ["mariadb:10.6", "mariadb:10.11", "mariadb:latest", "mysql:5.7", "mysql:latest"]
configuration: ["default", "one-host", "one-socket-host", "config-mount-dir", "fs-import-export", "different-apache-port", "run-as-www-data", "one-ssl-host"]
database-image: [
"mariadb:10.6",
"mariadb:10.11",
"mariadb:11.4",
"mariadb:latest",
"mysql:5.7",
"mysql:8.4",
"mysql:latest"
]
configuration: [
"default",
"one-host",
"one-socket-host",
"config-mount-dir",
"fs-import-export",
"different-apache-port",
"run-as-www-data"
]
include:
- {
database-image: "mariadb:10.6",
configuration: "one-ssl-host"
}
- {
database-image: "mariadb:10.11",
configuration: "one-ssl-host"
}
- {
database-image: "mariadb:11.4",
configuration: "one-ssl-host"
}
- {
database-image: "mariadb:latest",
configuration: "one-ssl-host"
}

steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit 6515c2b

Please sign in to comment.