Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

0.3 #490

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open

0.3 #490

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
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- ubuntu-latest
# - windows-latest see #5
ocaml-compiler:
- "5.2"
- "5.3"
include:
- os: ubuntu-latest
ocaml-compiler: "5.1"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: setup-ocaml
uses: ocaml/setup-ocaml@v3
with:
ocaml-compiler: "5.2"
ocaml-compiler: "5.3"
dune-cache: false
opam-pin: true
allow-prerelease-opam: false
Expand Down
2 changes: 2 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
## unreleased

## 0.3 - 2025-02-05

- add `owi replay` command to check a model produced by symbolic execution on a concrete execution
- add `owi instrument` to instrument Webassembly module annotated by Weasel specification language
- add `--srac` option to `sym` and `conc` cmd
Expand Down
40 changes: 26 additions & 14 deletions dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -43,20 +43,34 @@
(>= 20220210)))
(dune-build-info :build)
(dune-site :build)
;; runtime
bos
cmdliner
;; system packages
conf-clang
digestif
conf-lld
conf-llvm
conf-rust-llvm
conf-rust-wasm
;; runtime
(bos
(>= 0.2.1))
(cmdliner
(>= 1.3.0))
(digestif
(>= 1.2.0))
(integers
(>= 0.5.1))
ocaml_intrinsics
(prelude (>= 0.3))
sedlex
(smtml (>= 0.4.1))
uutf
xmlm
(processor (>= 0.2))
(ocaml_intrinsics
(>= "v0.17.0"))
(prelude
(>= 0.5))
(sedlex
(>= 3.3))
(smtml
(>= 0.5.0))
(uutf
(>= 1.0.3))
(xmlm (>= 1.4.0))
(processor
(>= 0.2))
;; doc
(odoc :with-doc)
;; test
Expand All @@ -74,7 +88,6 @@
(and
(>= 0.1)
:with-dev-setup))
(crunch :with-dev-setup)
(extunix :with-dev-setup)
(crowbar :with-dev-setup)
(gnuplot :with-dev-setup)
Expand All @@ -86,6 +99,5 @@
(yaml :with-dev-setup)
(lwt :with-dev-setup)
(cohttp :with-dev-setup)
(cohttp-lwt-unix :with-dev-setup)
)
(cohttp-lwt-unix :with-dev-setup))
(sites (share c_files) (share rust_files)))
29 changes: 13 additions & 16 deletions owi.opam
Original file line number Diff line number Diff line change
Expand Up @@ -22,24 +22,27 @@ depends: [
"menhir" {build & >= "20220210"}
"dune-build-info" {build}
"dune-site" {build}
"bos"
"cmdliner"
"conf-clang"
"digestif"
"conf-lld"
"conf-llvm"
"conf-rust-llvm"
"conf-rust-wasm"
"bos" {>= "0.2.1"}
"cmdliner" {>= "1.3.0"}
"digestif" {>= "1.2.0"}
"integers" {>= "0.5.1"}
"ocaml_intrinsics"
"prelude" {>= "0.3"}
"sedlex"
"smtml" {>= "0.4.1"}
"uutf"
"xmlm"
"ocaml_intrinsics" {>= "v0.17.0"}
"prelude" {>= "0.5"}
"sedlex" {>= "3.3"}
"smtml" {>= "0.5.0"}
"uutf" {>= "1.0.3"}
"xmlm" {>= "1.4.0"}
"processor" {>= "0.2"}
"odoc" {with-doc}
"mdx" {with-test & >= "2.1"}
"frama-c" {>= "29.0" & with-test}
"bisect_ppx" {>= "2.5" & with-dev-setup}
"ocb" {>= "0.1" & with-dev-setup}
"crunch" {with-dev-setup}
"extunix" {with-dev-setup}
"crowbar" {with-dev-setup}
"gnuplot" {with-dev-setup}
Expand Down Expand Up @@ -71,12 +74,6 @@ build: [
]
dev-repo: "git+https://github.com/ocamlpro/owi.git"
available: (arch = "x86_32" | arch = "x86_64" | arch = "arm64") & os != "win32"
depexts: [
["llvm" "lld"] {os-family = "debian"}
["llvm"] {os-family = "homebrew"}
]
pin-depends: [
[ "crowbar.dev" "git+https://github.com/stedolan/crowbar#1ab53fb088d56578b48301bc4cfb859331a10d78"]
["alt-ergo-lib.2.6.0" "git+https://github.com/OCamlPro/alt-ergo.git#7ee96296a5de9588a4d585b3b8abec35f4755425"]
["alt-ergo.2.6.0" "git+https://github.com/OCamlPro/alt-ergo.git#7ee96296a5de9588a4d585b3b8abec35f4755425"]
]
6 changes: 0 additions & 6 deletions owi.opam.template
Original file line number Diff line number Diff line change
@@ -1,10 +1,4 @@
available: (arch = "x86_32" | arch = "x86_64" | arch = "arm64") & os != "win32"
depexts: [
["llvm" "lld"] {os-family = "debian"}
["llvm"] {os-family = "homebrew"}
]
pin-depends: [
[ "crowbar.dev" "git+https://github.com/stedolan/crowbar#1ab53fb088d56578b48301bc4cfb859331a10d78"]
["alt-ergo-lib.2.6.0" "git+https://github.com/OCamlPro/alt-ergo.git#7ee96296a5de9588a4d585b3b8abec35f4755425"]
["alt-ergo.2.6.0" "git+https://github.com/OCamlPro/alt-ergo.git#7ee96296a5de9588a4d585b3b8abec35f4755425"]
]
Loading