Skip to content

Commit cba4a98

Browse files
authored
ci: include Boost (#2393)
1 parent fb042d6 commit cba4a98

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,16 @@ jobs:
8080
python-version: ${{ matrix.python }}
8181
architecture: ${{ matrix.arch }}
8282

83+
- name: Setup Boost
84+
if: runner.os != 'macOS'
85+
run: echo "::set-env name=BOOST_ROOT::$BOOST_ROOT_1_72_0"
86+
87+
- name: Setup Boost (macOS)
88+
if: runner.os == 'macOS'
89+
run: brew install boost
90+
8391
- name: Cache wheels
84-
if: startsWith(runner.os, 'macOS')
92+
if: runner.os == 'macOS'
8593
uses: actions/cache@v2
8694
with:
8795
# This path is specific to macOS - we really only need it for PyPy NumPy wheels

0 commit comments

Comments
 (0)