Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,8 @@ Goblint includes analyses for assertions, overflows, deadlocks, etc and can be e
conf-gcc ; ensures opam-repository CI installs real gcc from homebrew on MacOS
domain-local-await
domain_shims
(ocaml-lsp-server :with-dev-setup) ; needed for https://github.com/ocamllabs/vscode-ocaml-platform
(ocp-indent :with-dev-setup) ; needed for pre-commit hook
)
(depopts
apron
Expand Down
2 changes: 2 additions & 0 deletions goblint.opam
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,8 @@ depends: [
"conf-gcc"
"domain-local-await"
"domain_shims"
"ocaml-lsp-server" {with-dev-setup}
"ocp-indent" {with-dev-setup}
]
depopts: ["apron" "z3" "domainslib" "memtrace"]
conflicts: [
Expand Down
7 changes: 2 additions & 5 deletions make.sh
Original file line number Diff line number Diff line change
Expand Up @@ -81,11 +81,8 @@ rule() {
opam_setup
;; dev)
eval $(opam env)
echo "Installing opam packages for test and doc..."
opam install -y . --deps-only --locked --with-test --with-doc
echo "Installing opam packages for development..."
opam install -y ocaml-lsp-server ocp-indent
# ocaml-lsp-server is needed for https://github.com/ocamllabs/vscode-ocaml-platform
echo "Installing opam packages for test, doc and dev-setup..."
opam install -y . --deps-only --locked --with-test --with-doc --with-dev-setup
Comment thread
sim642 marked this conversation as resolved.
echo "Installing Pre-commit hook..."
cd .git/hooks; ln -sf ../../scripts/hooks/pre-commit; cd -
# Use `git commit -n` to temporarily bypass the hook if necessary.
Expand Down
Loading