Skip to content

Commit

Permalink
add boost dependency install
Browse files Browse the repository at this point in the history
  • Loading branch information
stephprince committed Apr 1, 2024
1 parent 6df7e22 commit fdfdc05
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@ jobs:

- name: Install dependencies - ubuntu
if: matrix.os == 'ubuntu-latest'
run: >-
run: |
sudo apt-get update
sudo apt-get install -y libhdf5-dev
sudo apt-get install -y libhdf5-dev libboost-all-dev
- name: Install dependencies - macos
if: matrix.os == 'macos-latest'
run: brew install hdf5
run: brew install hdf5 boost

- name: Install dependencies - windows
if: matrix.os == 'windows-latest'
Expand All @@ -46,7 +46,7 @@ jobs:
cd vcpkg
./bootstrap-vcpkg.bat
./vcpkg integrate install
./vcpkg install hdf5
./vcpkg install hdf5 boost
- name: Install static analyzers
if: matrix.os == 'ubuntu-latest'
Expand Down

0 comments on commit fdfdc05

Please sign in to comment.