Commit cba4a985 by Henry Schreiner Committed by GitHub

ci: include Boost (#2393)

parent fb042d69
...@@ -80,8 +80,16 @@ jobs: ...@@ -80,8 +80,16 @@ jobs:
python-version: ${{ matrix.python }} python-version: ${{ matrix.python }}
architecture: ${{ matrix.arch }} architecture: ${{ matrix.arch }}
- name: Setup Boost
if: runner.os != 'macOS'
run: echo "::set-env name=BOOST_ROOT::$BOOST_ROOT_1_72_0"
- name: Setup Boost (macOS)
if: runner.os == 'macOS'
run: brew install boost
- name: Cache wheels - name: Cache wheels
if: startsWith(runner.os, 'macOS') if: runner.os == 'macOS'
uses: actions/cache@v2 uses: actions/cache@v2
with: with:
# This path is specific to macOS - we really only need it for PyPy NumPy wheels # This path is specific to macOS - we really only need it for PyPy NumPy wheels
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment