Skip to content

Commit b89b447

Browse files
committed
macos buildfix
1 parent 80c068d commit b89b447

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/cmake-multi-platform.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,13 @@ jobs:
3636
uses: seanmiddleditch/gha-setup-ninja@master
3737

3838
- name: Install scons
39-
run: pip3 install scons
39+
run: |
40+
if [ "$RUNNER_OS" = "macOS" ]; then
41+
brew install scons
42+
else
43+
pip3 install scons
44+
fi
45+
shell: bash
4046

4147
- name: Configure CMake
4248
run: >

0 commit comments

Comments
 (0)