Skip to content

Commit

Permalink
Merge pull request #2547 from TaKO8Ki/fix-brew
Browse files Browse the repository at this point in the history
Fix brew fails on macos-latest
  • Loading branch information
weiznich authored Oct 27, 2020
2 parents fed0da6 + edda7a6 commit 426b813
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 426b813

Please sign in to comment.