Skip to content

Commit

Permalink
Fix CI build dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
joaomhmpereira committed Oct 23, 2024
1 parent cfe0959 commit b7aade5
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,10 @@ jobs:
dune-cache: true
allow-prerelease-opam: true
- name: Install dependencies
run: opam install -y . --deps-only --with-test
run: |
sudo apt update
sudo apt install -y libsparsehash-dev
opam install -y . --deps-only --with-test
- name: Build
run: opam exec -- dune build @install
- name: Test
Expand Down

0 comments on commit b7aade5

Please sign in to comment.