Commit 54430436 by Henry Schreiner Committed by GitHub

ci: install Boost for boost checks (#2968)

parent bca4b36b
...@@ -66,9 +66,13 @@ jobs: ...@@ -66,9 +66,13 @@ jobs:
with: with:
python-version: ${{ matrix.python }} python-version: ${{ matrix.python }}
- name: Setup Boost (Windows / Linux latest) - name: Setup Boost (Linux)
shell: bash if: runner.os == 'Linux'
run: echo "BOOST_ROOT=$BOOST_ROOT_1_72_0" >> $GITHUB_ENV run: sudo apt-get install libboost-dev
- name: Setup Boost (macOS)
if: runner.os == 'macOS'
run: brew install boost
- name: Update CMake - name: Update CMake
uses: jwlawson/actions-setup-cmake@v1.8 uses: jwlawson/actions-setup-cmake@v1.8
......
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