-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
4 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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' }} | ||
|
@@ -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 | ||
|
@@ -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 | ||
|