Skip to content

Remove ci warnings about linking of openssl brew #339

New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Merged
merged 2 commits into from
Nov 27, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -320,6 +320,7 @@ jobs:
brew unlink "$pkg"
brew link --overwrite "$pkg"
done
brew upgrade openssl >/dev/null 2>&1
brew upgrade

- name: Build LLVM/Cling on Unix systems if the cache is invalid
Expand Down Expand Up @@ -767,7 +768,7 @@ jobs:
- name: Install deps on MacOS
if: runner.os == 'macOS'
run: |
brew update
brew update --force
brew remove ruby@3.0
export ARCHITECHURE=$(uname -m)
if [[ "$ARCHITECHURE" == "x86_64" ]]; then
Expand All @@ -778,7 +779,7 @@ jobs:
brew unlink "$pkg"
brew link --overwrite "$pkg"
done
brew upgrade
brew upgrade --force
brew install eigen
brew install boost
pip install distro pytest
Expand Down