File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -89,10 +89,11 @@ jobs:
89
89
python3 -m pip install --upgrade pip
90
90
python3 -m pip install --user urllib3 lxml paramiko nose texttable ipmisim pyopenssl pycryptodome mock flask netaddr pylint pycodestyle six astroid mysql-connector-python
91
91
92
- - name : Setup MySQL
92
+ - name : Setup MySQL Server
93
93
run : |
94
+ # https://github.com/actions/runner-images/blob/main/images/linux/Ubuntu2004-Readme.md#mysql
94
95
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;"
96
97
sudo systemctl restart mysql
97
98
sudo mysql -uroot -e "SELECT VERSION();"
98
99
You can’t perform that action at this time.
0 commit comments