-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
4 additions
and
1 deletion.
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 |
---|---|---|
|
@@ -45,11 +45,14 @@ jobs: | |
- name: Setup PostgreSQL & MySQL & SQLite (for macOS) | ||
if: matrix.os == 'macOS-latest' | ||
run: | | ||
# Unlink and re-link to prevent errors when github mac runner images | ||
# https://github.com/actions/setup-python/issues/577 | ||
brew list -1 | grep python | while read formula; do brew unlink $formula; brew link --overwrite $formula; done | ||
brew update | ||
brew uninstall --ignore-dependencies node | ||
brew install node@18 | ||
brew link --overwrite node@18 | ||
brew link --overwrite [email protected] | ||
brew upgrade | ||
brew services start postgresql | ||
brew install [email protected] sqlite | ||
|