File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed
Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,8 @@ if [ "$(uname)" == "Linux" ]; then
2424 ./b2 install --prefix=/opt/boost --with=all
2525 cd ..
2626elif [ " $( uname) " == " Darwin" ]; then
27- brew install wget cmake boost
27+ brew install wget cmake ninja boost
28+ sudo xcode-select -switch /Applications/Xcode.app
2829fi
2930
3031$( which $PYTHON ) -m pip install -r $PROJECT_DIR /python/dev_requirements.txt
Original file line number Diff line number Diff line change @@ -109,6 +109,12 @@ jobs:
109109 echo "DEVELOP=1" >> $GITHUB_ENV
110110 echo "TIMESTAMP=${{ needs.get_system_time.outputs.timestamp }}" >> $GITHUB_ENV
111111
112+ - name : Set compiler to clang if on MacOS
113+ if : startsWith(matrix.os, 'macos')
114+ run : |
115+ echo "CC=clang" >> $GITHUB_ENV
116+ echo "CXX=clang++" >> $GITHUB_ENV
117+
112118 - name : Install Dependencies
113119 run : |
114120 python3 -m pip install -r python/dev_requirements.txt
You can’t perform that action at this time.
0 commit comments