From 4c801a70be6ec095797689bf2240ec875ba840c7 Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Fri, 23 Oct 2020 16:00:57 +0100 Subject: [PATCH] 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. --- .github/workflows/ci-macos.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.5