Skip to content

Commit 5656dc4

Browse files
committed
fix
1 parent 11efe3f commit 5656dc4

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,10 +89,11 @@ jobs:
8989
python3 -m pip install --upgrade pip
9090
python3 -m pip install --user urllib3 lxml paramiko nose texttable ipmisim pyopenssl pycryptodome mock flask netaddr pylint pycodestyle six astroid mysql-connector-python
9191
92-
- name: Setup MySQL
92+
- name: Setup MySQL Server
9393
run: |
94+
# https://github.com/actions/runner-images/blob/main/images/linux/Ubuntu2004-Readme.md#mysql
9495
sudo systemctl start mysql
95-
sudo mysql -uroot -e "ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY ''; FLUSH PRIVILEGES;"
96+
sudo mysql -uroot -proot -e "ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY ''; FLUSH PRIVILEGES;"
9697
sudo systemctl restart mysql
9798
sudo mysql -uroot -e "SELECT VERSION();"
9899

0 commit comments

Comments
 (0)