Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
vjik committed Mar 20, 2024
1 parent 8b98ca8 commit 585c130
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
# - "7.3"
# - "7.4"
sphinx:
- "2.2.11"
# - "2.2.11"
- "3.5.1"

steps:
Expand Down Expand Up @@ -63,7 +63,8 @@ jobs:
- name: Setup source database
run: |
sudo systemctl start mysql.service
mysql -uroot -proot -e 'USE mysql;ALTER USER "root"@"localhost" IDENTIFIED WITH mysql_native_password BY "root";FLUSH PRIVILEGES;'
mysql -uroot -proot -e 'ALTER USER "root"@"localhost" IDENTIFIED WITH mysql_native_password BY "root";'
mysql -uroot -proot -e 'FLUSH PRIVILEGES;;'
mysql -uroot -proot -e 'CREATE DATABASE `yiitest`;'
mysql -D yiitest -uroot -proot < tests/data/source.sql
Expand Down

0 comments on commit 585c130

Please sign in to comment.