summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2020-07-20 10:11:05 +0100
committerSadie Powell <sadie@witchery.services>2020-08-01 08:45:14 +0100
commit83871bb72c21deef9d232121bef12ffdf8e1fe7c (patch)
treeee5f70b76bf93556299f557bef4be7f504b622db /.github
parenteb11cc14db861ac8bfe6b93515272a8ab11fb714 (diff)
Only upgrade Homebrew packages that we actually use.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci-macos.yml6
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