Skip to content

Commit

Permalink
Suppress warnings in brew update ci
Browse files Browse the repository at this point in the history
  • Loading branch information
mcbarton authored Oct 28, 2024
1 parent 0af4a2a commit c9369f7
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -313,15 +313,14 @@ jobs:
- name: Install deps on MacOS
if: ${{ runner.os == 'macOS' && steps.cache.outputs.cache-hit != 'true' }}
run: |
brew update
brew update --quiet
brew remove [email protected]
brew remove openssl@3
# workaround for https://github.com/actions/setup-python/issues/577
for pkg in $(brew list | grep '^python@'); do
brew unlink "$pkg"
brew link --overwrite "$pkg"
done
brew upgrade
brew upgrade --quiet
- name: Build LLVM/Cling on Unix systems if the cache is invalid
if: ${{ runner.os != 'windows' && steps.cache.outputs.cache-hit != 'true' }}
Expand Down Expand Up @@ -768,9 +767,8 @@ jobs:
- name: Install deps on MacOS
if: runner.os == 'macOS'
run: |
brew update
brew update --quiet
brew remove [email protected]
brew remove openssl@3
export ARCHITECHURE=$(uname -m)
if [[ "$ARCHITECHURE" == "x86_64" ]]; then
brew remove swiftlint
Expand All @@ -780,7 +778,7 @@ jobs:
brew unlink "$pkg"
brew link --overwrite "$pkg"
done
brew upgrade
brew upgrade --quiet
brew install eigen
brew install boost
pip install distro pytest
Expand Down

0 comments on commit c9369f7

Please sign in to comment.