From c0f75dd4f5a54d593d0b9afcb71e266cf6a86c29 Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Thu, 13 Feb 2020 22:39:05 +0000 Subject: [PATCH] Fix GitHub Actions on macOS for real this time. --- .github/workflows/ci-macos.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-macos.yml b/.github/workflows/ci-macos.yml index f1fed7e82..4521fea31 100644 --- a/.github/workflows/ci-macos.yml +++ b/.github/workflows/ci-macos.yml @@ -14,9 +14,10 @@ jobs: - uses: actions/checkout@v2 - name: Install dependencies run: | + brew update brew install pkg-config gnutls libmaxminddb libpq mbedtls mysql-client openssl@1.1 pcre re2 sqlite3 tre - brew link --force libpq - brew link --force mysql-client + brew link --force --overwrite libpq + brew link --force --overwrite mysql-client - name: Run test-build run: ./tools/test-build c++ strategy: