diff options
author | Sadie Powell <sadie@witchery.services> | 2020-02-13 22:39:05 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2020-02-13 22:47:23 +0000 |
commit | c0f75dd4f5a54d593d0b9afcb71e266cf6a86c29 (patch) | |
tree | e01ab1d9347503c755a678af7e56e6816ed0d94e /.github | |
parent | 0d33e174a4ac49e54f73e4375e7702e13a1cf34c (diff) |
Fix GitHub Actions on macOS for real this time.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci-macos.yml | 5 |
1 files 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: |