Skip to content

Commit

Permalink
More fixes for mysql setup
Browse files Browse the repository at this point in the history
  • Loading branch information
weiznich committed Mar 5, 2021
1 parent 453cfb8 commit 8e9e639
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,8 @@ jobs:
run: |
brew update &&
brew install mysql@5.7 &&
brew services start mysql &&
brew services stop mysql;sleep 3;brew services start mysql &&
brew services start mysql@5.7 &&
brew services stop mysql@5.7;sleep 3;brew services start mysql@5.7 &&
sleep 2 &&
/usr/local/Cellar/mysql@5.7/5.7.32/bin/mysql -e "create database diesel_test; create database diesel_unit_test; grant all on \`diesel_%\`.* to 'root'@'localhost';" -uroot
echo 'MYSQL_DATABASE_URL=mysql://root@localhost/diesel_test' >> $GITHUB_ENV
Expand Down

0 comments on commit 8e9e639

Please sign in to comment.