forked from rems-project/sail
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix workflow: build with the latest ocaml for now
- Loading branch information
Showing
2 changed files
with
44 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# This file is generated by dune, edit dune-project instead | ||
opam-version: "2.0" | ||
version: "0.17" | ||
synopsis: "Sail to JSON formatting" | ||
maintainer: ["Sail Devs <[email protected]>"] | ||
authors: [ | ||
"Alasdair Armstrong" | ||
"Thomas Bauereiss" | ||
"Brian Campbell" | ||
"Shaked Flur" | ||
"Jonathan French" | ||
"Kathy Gray" | ||
"Robert Norton" | ||
"Christopher Pulte" | ||
"Peter Sewell" | ||
"Mark Wassell" | ||
] | ||
license: "BSD-2-Clause" | ||
homepage: "https://github.com/rems-project/sail" | ||
bug-reports: "https://github.com/rems-project/sail/issues" | ||
depends: [ | ||
"dune" {>= "3.0"} | ||
"libsail" {= version} | ||
"omd" {>= "1.3.1" & < "1.4.0"} | ||
"odoc" {with-doc} | ||
] | ||
build: [ | ||
["dune" "subst"] {dev} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"--promote-install-files=false" | ||
"@install" | ||
"@runtest" {with-test} | ||
"@doc" {with-doc} | ||
] | ||
["dune" "install" "-p" name "--create-install-files" name] | ||
] | ||
dev-repo: "git+https://github.com/rems-project/sail.git" |