Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
3 changes: 2 additions & 1 deletion .github/workflows/dune.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ jobs:
ocaml-compiler: ${{ matrix.ocaml-compiler }}
- name: Install dependencies
run: |
opam install extlib camlzip zarith ocamlbuild odoc goblint-cil.2.0.6
opam install --deps-only ./CodeHawk/codehawk.opam
opam install odoc
- name: Build executables
run: eval $(opam env) && cd CodeHawk && dune build @install
- name: Build documentation
Expand Down
2 changes: 1 addition & 1 deletion CodeHawk/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ git clone https://github.com/static-analysis-engineering/codehawk.git
cd codehawk/CodeHawk
opam switch create . 5.2.0
eval $(opam env)
opam install dune ocamlfind zarith camlzip extlib goblint-cil.2.0.6
opam install --deps-only ./codehawk.opam

dune build @install
```
Expand Down
20 changes: 20 additions & 0 deletions CodeHawk/codehawk.opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
opam-version: "2.0"
maintainer: "[email protected]"
authors: ["Henny B. Sipma" "A. Cody Schuffelen" "Anca Browne"
"Andrew McGraw" "Arnaud Venet" "Aarno Labs LLC"]
synopsis: "CodeHawk Abstract Interpretation Engine and Analyzers"
license: "MIT"
homepage: "https://github.com/static-analysis-engineering/codehawk"
bug-reports: "https://github.com/static-analysis-engineering/codehawk/issues"
dev-repo: "git+https://github.com/static-analysis-engineering/codehawk.git"

depends: [
"ocaml" {< "5.3.0"}
"dune" {>= "3.0"}
"ocamlfind"
"zarith"
"camlzip"
"extlib"
"goblint-cil" {= "2.0.6"}
]

Loading