diff options
author | Sadie Powell <sadie@witchery.services> | 2020-10-23 16:00:57 +0100 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2020-10-23 16:14:51 +0100 |
commit | 4c801a70be6ec095797689bf2240ec875ba840c7 (patch) | |
tree | ae3d9f8edfc462c6f8832f738a39c47d4d3e3ab5 | |
parent | ef871187b2c567c603bd0a51a8df87a33803eae2 (diff) |
Allow `brew update` to fail when running the macOS CI.
Homebrew is a broken mess and fails randomly when fetching changed
package manifests. As this isn't a critical part of build testing
we can just let it fail.
-rw-r--r-- | .github/workflows/ci-macos.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci-macos.yml b/.github/workflows/ci-macos.yml index 21296fc32..c3cd04591 100644 --- a/.github/workflows/ci-macos.yml +++ b/.github/workflows/ci-macos.yml @@ -14,7 +14,7 @@ jobs: - uses: actions/checkout@v2 - name: Install dependencies run: | - brew update + brew update || true for PACKAGE in pkg-config argon2 gnutls libmaxminddb libpq mbedtls mysql-client openssl@1.1 pcre re2 sqlite tre; do brew install $PACKAGE || brew upgrade $PACKAGE |