From d4723bb3ee1e5b220a69279bc7072017a01a073b Mon Sep 17 00:00:00 2001 From: Sergio Benitez Date: Thu, 8 Aug 2024 20:30:36 -0700 Subject: [PATCH] Pin macOS CI 'mysql-client' to '8.4'. mysqlclient-sys does not recognize v9, which causes the CI to fail. This resolves the issue. --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index de992bda..9db1bafd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -66,8 +66,8 @@ jobs: - name: Install Native Dependencies (macOS) if: matrix.platform.name == 'macOS' run: | - brew install mysql-client libpq sqlite coreutils - brew link --force --overwrite mysql-client + brew install mysql-client@8.4 libpq sqlite coreutils + brew link --force --overwrite mysql-client@8.4 brew link --force --overwrite libpq echo "/usr/local/opt/mysql-client/bin" >> "$GITHUB_PATH"