Pin macOS CI 'mysql-client' to '8.4'.

mysqlclient-sys does not recognize v9, which causes the CI to fail. This
resolves the issue.
This commit is contained in:
Sergio Benitez 2024-08-08 20:30:36 -07:00
parent 38cebebbc3
commit d4723bb3ee
1 changed files with 2 additions and 2 deletions

View File

@ -66,8 +66,8 @@ jobs:
- name: Install Native Dependencies (macOS) - name: Install Native Dependencies (macOS)
if: matrix.platform.name == 'macOS' if: matrix.platform.name == 'macOS'
run: | run: |
brew install mysql-client libpq sqlite coreutils brew install mysql-client@8.4 libpq sqlite coreutils
brew link --force --overwrite mysql-client brew link --force --overwrite mysql-client@8.4
brew link --force --overwrite libpq brew link --force --overwrite libpq
echo "/usr/local/opt/mysql-client/bin" >> "$GITHUB_PATH" echo "/usr/local/opt/mysql-client/bin" >> "$GITHUB_PATH"