File tree Expand file tree Collapse file tree 3 files changed +33
-6
lines changed Expand file tree Collapse file tree 3 files changed +33
-6
lines changed Original file line number Diff line number Diff line change 22
22
services :
23
23
database :
24
24
image : mariadb:${{ inputs.version }}
25
- options : --health-cmd="mysqladmin ping " --health-interval=10s --health-timeout=5s --health-retries=3
25
+ options : --health-cmd="healthcheck.sh --innodb_initialized " --health-interval=10s --health-timeout=5s --health-retries=3
26
26
env :
27
27
MYSQL_ALLOW_EMPTY_PASSWORD : yes
28
28
ports :
Original file line number Diff line number Diff line change @@ -21,11 +21,12 @@ jobs:
21
21
22
22
services :
23
23
database :
24
- image : mysql:${{ inputs.version }}
24
+ image : container-registry.oracle.com/ mysql/community-server :${{ inputs.version }}
25
25
options : --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
26
26
env :
27
- MYSQL_ALLOW_EMPTY_PASSWORD : yes
28
27
MYSQL_DATABASE : testing
28
+ MYSQL_USER : testing
29
+ MYSQL_PASSWORD : testing
29
30
ports :
30
31
- 3306:3306
31
32
58
59
env :
59
60
DB_CONNECTION : mysql
60
61
DB_DATABASE : testing
61
- DB_USERNAME : root
62
+ DB_USERNAME : testing
63
+ DB_PASSWORD : testing
Original file line number Diff line number Diff line change @@ -43,17 +43,37 @@ jobs:
43
43
uses : ./.github/workflows/tests-maria.yml
44
44
with :
45
45
version : " 10.10"
46
+ maria11_0 :
47
+ name : MariaDB 11.0
48
+ uses : ./.github/workflows/tests-maria.yml
49
+ with :
50
+ version : " 11.0"
51
+ maria11_1 :
52
+ name : MariaDB 11.1
53
+ uses : ./.github/workflows/tests-maria.yml
54
+ with :
55
+ version : " 11.1"
56
+ maria11_2 :
57
+ name : MariaDB 11.2
58
+ uses : ./.github/workflows/tests-maria.yml
59
+ with :
60
+ version : " 11.2"
46
61
47
62
mysql5_7 :
48
63
name : MySQL 5.7
49
64
uses : ./.github/workflows/tests-mysql.yml
50
65
with :
51
- version : 5.7
66
+ version : " 5.7"
52
67
mysql8_0 :
53
68
name : MySQL 8.0
54
69
uses : ./.github/workflows/tests-mysql.yml
55
70
with :
56
- version : 8.0
71
+ version : " 8.0"
72
+ mysql8_1 :
73
+ name : MySQL 8.1
74
+ uses : ./.github/workflows/tests-mysql.yml
75
+ with :
76
+ version : " 8.1"
57
77
58
78
pgsql10 :
59
79
name : PostgreSQL 10
@@ -85,6 +105,11 @@ jobs:
85
105
uses : ./.github/workflows/tests-pgsql.yml
86
106
with :
87
107
version : 15
108
+ pgsql16 :
109
+ name : PostgreSQL 16
110
+ uses : ./.github/workflows/tests-pgsql.yml
111
+ with :
112
+ version : 16
88
113
89
114
sqlite :
90
115
name : SQLite
You can’t perform that action at this time.
0 commit comments