-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2547 from TaKO8Ki/fix-brew
Fix brew fails on macos-latest
- Loading branch information
Showing
1 changed file
with
10 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -114,13 +114,23 @@ jobs: | |
- name: Install sqlite (MacOS) | ||
if: runner.os == 'macOS' && matrix.backend == 'sqlite' | ||
run: | | ||
brew uninstall [email protected] | ||
brew uninstall [email protected] | ||
brew untap local/openssl | ||
brew untap local/python2 | ||
brew cask install xquartz | ||
brew update | ||
brew install sqlite | ||
echo "SQLITE_DATABASE_URL=/tmp/test.db" >> $GITHUB_ENV | ||
- name: Install mysql (MacOS) | ||
if: runner.os == 'macOS' && matrix.backend == 'mysql' | ||
run: | | ||
brew uninstall [email protected] | ||
brew uninstall [email protected] | ||
brew untap local/openssl | ||
brew untap local/python2 | ||
brew cask install xquartz | ||
brew update | ||
brew install mysql | ||
brew services start mysql | ||
|