From af5edaab912c6f5254052a4976221d89f0950064 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20D=C3=BCrrenberger?= Date: Tue, 4 Jul 2023 07:57:47 +0200 Subject: [PATCH] Remove brew update until GitHub fixes the issue --- .github/workflows/ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2f6956fd..657329a5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -92,7 +92,8 @@ jobs: - name: Install macOS Tools if: runner.os == 'macOS' run: | - brew update + # Do not run updates until GitHub has fixed all the issues: https://github.com/orgs/Homebrew/discussions/4612 + # brew update brew install gcovr ninja || true - name: Install OpenCppCoverage and add to PATH @@ -238,7 +239,8 @@ jobs: - name: Install macOS Dependencies if: runner.os == 'macOS' run: | - brew update + # Do not run updates until GitHub has fixed all the issues: https://github.com/orgs/Homebrew/discussions/4612 + # brew update brew install llvm || true echo /usr/local/opt/llvm/bin >> $GITHUB_PATH