Skip to content

Commit 38b1b8e

Browse files
committed
Fix startup of mysql service in CI
1 parent 18ab97b commit 38b1b8e

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 postgresql start
1112
sudo service slapd start
1213
mysql -uroot -proot -e "CREATE DATABASE IF NOT EXISTS test"

0 commit comments

Comments
 (0)