From dd0bdcd18ffe3c03a14e5dab92845373e02889e9 Mon Sep 17 00:00:00 2001 From: Andre Schulz Date: Wed, 7 Aug 2024 16:46:48 +0200 Subject: [PATCH] Test CI --- .github/workflows/main.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 083515972..d60aafa9d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -52,8 +52,15 @@ jobs: - name: Install macOS dependencies if: runner.os == 'macOS' run: | + #export HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1 brew update - brew upgrade + # Only run "brew upgrade" on macOS 13 or higher because on macOS 12 + # the command will fail because brew cannot upgrade xcbeautify. I + # assume this is because there is no Bottle (binary package) for + # xcbeautify on macOS 12 and rebuilding xcbeautify + #if [ "`sw_vers -productVersion | cut -d '.' -f 1`" != "12" ]; then + # brew upgrade + #fi brew install -q \ googletest \ jpeg-turbo \