Skip to content

Commit

Permalink
Install boost on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ByteHamster committed Nov 21, 2024
1 parent 389929a commit 16f1e3a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ jobs:
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install --assume-yes --no-install-recommends ca-certificates cmake git libtbb-dev gcc-${{ matrix.version }} g++-${{ matrix.version }}
sudo apt-get install --assume-yes --no-install-recommends ca-certificates cmake git libtbb-dev libboost-all-dev
sudo apt-get install --assume-yes --no-install-recommends gcc-${{ matrix.version }} g++-${{ matrix.version }}
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-${{ matrix.version }} ${{ matrix.version }}
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-${{ matrix.version }} ${{ matrix.version }}
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ We also give a variant for variable-length strings that achieves significantly f
Requirements:

- GCC 11 or later
- [libxxhash v0.8.0](https://github.com/Cyan4973/xxHash/releases/tag/v0.8.0) or later
- boost

Clone the repository (as a submodule) and add the following to your `CMakeLists.txt`.

Expand Down

0 comments on commit 16f1e3a

Please sign in to comment.