Skip to content

Commit ee7f8d2

Browse files
committed
Fix startup of mysql service in CI
1 parent 915d1f6 commit ee7f8d2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/actions/setup-x64/action.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ runs:
66
run: |
77
set -x
88
9-
sudo service mysql start
9+
sudo systemctl enable mysql.service
10+
sudo systemctl start mysql.service
1011
sudo service slapd start
1112
mysql -uroot -proot -e "CREATE DATABASE IF NOT EXISTS test"
1213
# Ensure local_infile tests can run.

0 commit comments

Comments
 (0)