From 83871bb72c21deef9d232121bef12ffdf8e1fe7c Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Mon, 20 Jul 2020 10:11:05 +0100 Subject: Only upgrade Homebrew packages that we actually use. --- .github/workflows/ci-macos.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to '.github') 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 -- cgit v1.2.3