Skip to content

Commit 0969ff6

Browse files
committed
Fix openssl link overwrite warning ci
1 parent 29588be commit 0969ff6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -313,14 +313,14 @@ jobs:
313313
- name: Install deps on MacOS
314314
if: ${{ runner.os == 'macOS' && steps.cache.outputs.cache-hit != 'true' }}
315315
run: |
316-
brew update
316+
brew update --force
317317
brew remove ruby@3.0
318318
# workaround for https://github.com/actions/setup-python/issues/577
319319
for pkg in $(brew list | grep '^python@'); do
320320
brew unlink "$pkg"
321321
brew link --overwrite "$pkg"
322322
done
323-
brew upgrade
323+
brew upgrade --force
324324
325325
- name: Build LLVM/Cling on Unix systems if the cache is invalid
326326
if: ${{ runner.os != 'windows' && steps.cache.outputs.cache-hit != 'true' }}
@@ -767,7 +767,7 @@ jobs:
767767
- name: Install deps on MacOS
768768
if: runner.os == 'macOS'
769769
run: |
770-
brew update
770+
brew update --force
771771
brew remove ruby@3.0
772772
export ARCHITECHURE=$(uname -m)
773773
if [[ "$ARCHITECHURE" == "x86_64" ]]; then
@@ -778,7 +778,7 @@ jobs:
778778
brew unlink "$pkg"
779779
brew link --overwrite "$pkg"
780780
done
781-
brew upgrade
781+
brew upgrade --force
782782
brew install eigen
783783
brew install boost
784784
pip install distro pytest

0 commit comments

Comments
 (0)