Remove brew update until GitHub fixes the issue

This commit is contained in:
Lukas Dürrenberger 2023-07-04 07:57:47 +02:00 committed by Lukas Dürrenberger
parent 5f73a1514d
commit af5edaab91

View File

@ -92,7 +92,8 @@ jobs:
- name: Install macOS Tools - name: Install macOS Tools
if: runner.os == 'macOS' if: runner.os == 'macOS'
run: | 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 brew install gcovr ninja || true
- name: Install OpenCppCoverage and add to PATH - name: Install OpenCppCoverage and add to PATH
@ -238,7 +239,8 @@ jobs:
- name: Install macOS Dependencies - name: Install macOS Dependencies
if: runner.os == 'macOS' if: runner.os == 'macOS'
run: | 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 brew install llvm || true
echo /usr/local/opt/llvm/bin >> $GITHUB_PATH echo /usr/local/opt/llvm/bin >> $GITHUB_PATH