Skip to content

Commit

Permalink
Fix "missing libgmp.so" error
Browse files Browse the repository at this point in the history
Bazel CI's base image no longer contains a lot of potential dependencies used by projects, but instead now it's possible to install dependencies using `sudo apt install` easily. This should probably fix the reported error.
  • Loading branch information
philwo authored Dec 7, 2021
1 parent 7ef5b95 commit 8a26fee
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .bazelci/presubmit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ tasks:
environment:
# haskell base uses the environment locale to decode sockets
LANG: "C.UTF-8"
shell_commands:
- "sudo apt -y update && sudo apt -y install libgmp-dev"
build_flags:
- "--build_tag_filters=-requires_nix,-requires_lz4,-requires_shellcheck,-requires_threaded_rts,-dont_test_with_bindist,-dont_test_on_bazelci"
build_targets:
Expand Down

0 comments on commit 8a26fee

Please sign in to comment.