Skip to content

Commit 5443043

Browse files
authored
ci: install Boost for boost checks (#2968)
1 parent bca4b36 commit 5443043

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,13 @@ jobs:
6666
with:
6767
python-version: ${{ matrix.python }}
6868

69-
- name: Setup Boost (Windows / Linux latest)
70-
shell: bash
71-
run: echo "BOOST_ROOT=$BOOST_ROOT_1_72_0" >> $GITHUB_ENV
69+
- name: Setup Boost (Linux)
70+
if: runner.os == 'Linux'
71+
run: sudo apt-get install libboost-dev
72+
73+
- name: Setup Boost (macOS)
74+
if: runner.os == 'macOS'
75+
run: brew install boost
7276

7377
- name: Update CMake
7478
uses: jwlawson/[email protected]

0 commit comments

Comments
 (0)