Skip to content

Commit b5466f4

Browse files
committed
Enable binlog
1 parent a3da0e3 commit b5466f4

File tree

3 files changed

+13
-1
lines changed

3 files changed

+13
-1
lines changed

.github/workflows/ci.yml

+7-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,13 @@ jobs:
6868
MYSQL_ALLOW_EMPTY_PASSWORD: yes
6969
ports:
7070
- 3306:3306
71-
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
71+
volumes:
72+
- cimysql:/etc/mysql
73+
options: >-
74+
--health-cmd="mysqladmin ping"
75+
--health-interval=10s
76+
--health-timeout=5s
77+
--health-retries=3
7278
7379
steps:
7480
- name: MySQL versions

.github/workflows/cimysql/my.cnf

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[mysqld]
2+
server-id=100
3+
log-bin

cimysql/my.cnf

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[mysqld]
2+
server-id=100
3+
log-bin

0 commit comments

Comments
 (0)