From 54430436fee2afc4f8443691075a6208f9ea8eba Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Thu, 22 Apr 2021 00:03:07 -0400 Subject: [PATCH] ci: install Boost for boost checks (#2968) --- .github/workflows/ci.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a1bdec7b..19e1030d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -66,9 +66,13 @@ jobs: with: python-version: ${{ matrix.python }} - - name: Setup Boost (Windows / Linux latest) - shell: bash - run: echo "BOOST_ROOT=$BOOST_ROOT_1_72_0" >> $GITHUB_ENV + - name: Setup Boost (Linux) + if: runner.os == 'Linux' + run: sudo apt-get install libboost-dev + + - name: Setup Boost (macOS) + if: runner.os == 'macOS' + run: brew install boost - name: Update CMake uses: jwlawson/actions-setup-cmake@v1.8