Skip to content

Commit 6515c2b

Browse files
committed
Add MariaDB 11.4 to testing and MySQL 8.4, and exclude MySQL from the SSL test
1 parent 7d51494 commit 6515c2b

File tree

1 file changed

+35
-2
lines changed

1 file changed

+35
-2
lines changed

.github/workflows/run-tests.yml

Lines changed: 35 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,41 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
database-image: ["mariadb:10.6", "mariadb:10.11", "mariadb:latest", "mysql:5.7", "mysql:latest"]
18-
configuration: ["default", "one-host", "one-socket-host", "config-mount-dir", "fs-import-export", "different-apache-port", "run-as-www-data", "one-ssl-host"]
17+
database-image: [
18+
"mariadb:10.6",
19+
"mariadb:10.11",
20+
"mariadb:11.4",
21+
"mariadb:latest",
22+
"mysql:5.7",
23+
"mysql:8.4",
24+
"mysql:latest"
25+
]
26+
configuration: [
27+
"default",
28+
"one-host",
29+
"one-socket-host",
30+
"config-mount-dir",
31+
"fs-import-export",
32+
"different-apache-port",
33+
"run-as-www-data"
34+
]
35+
include:
36+
- {
37+
database-image: "mariadb:10.6",
38+
configuration: "one-ssl-host"
39+
}
40+
- {
41+
database-image: "mariadb:10.11",
42+
configuration: "one-ssl-host"
43+
}
44+
- {
45+
database-image: "mariadb:11.4",
46+
configuration: "one-ssl-host"
47+
}
48+
- {
49+
database-image: "mariadb:latest",
50+
configuration: "one-ssl-host"
51+
}
1952

2053
steps:
2154
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)