Skip to content

Commit c910412

Browse files
committed
Add workaround to install_macos script
Signed-off-by: Dan Bailey <danbailey@ilm.com>
1 parent b7e1c50 commit c910412

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

.github/workflows/houdini.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,7 @@ jobs:
161161
- name: install_deps
162162
run: |
163163
# Remove Python3 symlinks in /usr/local/bin as workaround to brew update issues
164+
# https://github.com/actions/setup-python/issues/577
164165
rm /usr/local/bin/2to3* || :
165166
rm /usr/local/bin/idle3* || :
166167
rm /usr/local/bin/pydoc* || :

ci/install_macos.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
set -x
44

5+
# Remove Python3 symlinks in /usr/local/bin as workaround to brew update issues
6+
# https://github.com/actions/setup-python/issues/577
7+
rm /usr/local/bin/2to3* || :
8+
rm /usr/local/bin/idle3* || :
9+
rm /usr/local/bin/pydoc* || :
10+
rm /usr/local/bin/python3* || :
11+
512
brew update
613
brew install bash gnu-getopt # for CI scripts
714
brew install boost

0 commit comments

Comments
 (0)