We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb042d6 commit cba4a98Copy full SHA for cba4a98
.github/workflows/ci.yml
@@ -80,8 +80,16 @@ jobs:
80
python-version: ${{ matrix.python }}
81
architecture: ${{ matrix.arch }}
82
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
91
- name: Cache wheels
- if: startsWith(runner.os, 'macOS')
92
93
uses: actions/cache@v2
94
with:
95
# This path is specific to macOS - we really only need it for PyPy NumPy wheels
0 commit comments