File tree Expand file tree Collapse file tree 2 files changed +13
-0
lines changed
Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -160,6 +160,12 @@ jobs:
160160 cd $HOME/houdini_install && tar -xzf hou.tar.gz && cd -
161161 - name : install_deps
162162 run : |
163+ # Remove Python3 symlinks in /usr/local/bin as workaround to brew update issues
164+ # https://github.com/actions/setup-python/issues/577
165+ rm /usr/local/bin/2to3* || :
166+ rm /usr/local/bin/idle3* || :
167+ rm /usr/local/bin/pydoc* || :
168+ rm /usr/local/bin/python3* || :
163169 brew update
164170 brew install bash gnu-getopt cmake boost glfw googletest openexr pybind11 llvm@15 cppunit
165171 echo "/usr/local/opt/gnu-getopt/bin" >> $GITHUB_PATH
Original file line number Diff line number Diff line change 22
33set -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+
512brew update
613brew install bash gnu-getopt # for CI scripts
714brew install boost
You can’t perform that action at this time.
0 commit comments