From cba4a98546ed0e054fb85d1a7eb70a37154d8fd4 Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Fri, 14 Aug 2020 12:24:58 -0400 Subject: [PATCH] ci: include Boost (#2393) --- .github/workflows/ci.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b946fc832..9c65967da 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -80,8 +80,16 @@ jobs: python-version: ${{ matrix.python }} 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 - if: startsWith(runner.os, 'macOS') + if: runner.os == 'macOS' uses: actions/cache@v2 with: # This path is specific to macOS - we really only need it for PyPy NumPy wheels