Skip to content

Commit 626bfa3

Browse files
authored
Merge pull request #1917 from jan-cerny/osx_workaround
Workaround OS X GitHub Actions CI problems
2 parents 1f30221 + fb9207c commit 626bfa3

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,9 @@ jobs:
8787
# Runs a single command using the runners shell
8888
- name: Install Deps
8989
run: |
90+
# Unlink and re-link to prevent errors when GitHub Mac runner images
91+
# install Python outside of Brew:
92+
brew list -1 | grep python | while read formula; do brew unlink $formula; brew link --overwrite $formula; done
9093
brew update
9194
brew install doxygen
9295
brew install opendbx

0 commit comments

Comments
 (0)