diff options
| author | 2020-07-20 10:11:05 +0100 | |
|---|---|---|
| committer | 2020-08-01 08:45:14 +0100 | |
| commit | 83871bb72c21deef9d232121bef12ffdf8e1fe7c (patch) | |
| tree | ee5f70b76bf93556299f557bef4be7f504b622db | |
| parent | Fix null-checking the wrong variable in the disable module. (diff) | |
Only upgrade Homebrew packages that we actually use.
| -rw-r--r-- | .github/workflows/ci-macos.yml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/.github/workflows/ci-macos.yml b/.github/workflows/ci-macos.yml index c5fe3c3e1..db155781a 100644 --- a/.github/workflows/ci-macos.yml +++ b/.github/workflows/ci-macos.yml @@ -15,8 +15,10 @@ jobs: - name: Install dependencies run: | brew update - brew upgrade - brew install pkg-config gnutls libmaxminddb libpq mbedtls mysql-client openssl@1.1 pcre re2 sqlite tre + for PACKAGE in pkg-config gnutls libmaxminddb libpq mbedtls mysql-client openssl@1.1 pcre re2 sqlite tre; + do + brew install $PACKAGE || brew upgrade $PACKAGE + done brew link --force --overwrite libpq brew link --force --overwrite mysql-client - name: Run test-build |
