diff --git a/dune-project b/dune-project index 66096be0d874fada87271a90f8d2780fc37ef5cd..bb5b3dc8b131b20828a0141ac3defb3a42094993 100644 --- a/dune-project +++ b/dune-project @@ -1,4 +1,4 @@ -(lang dune 3.0) +(lang dune 3.7) (formatting (enabled_for ocaml)) (cram enable) (using ctypes 0.1) diff --git a/dune-workspace b/dune-workspace index 160f6a6537e6b7e422fa36abfc54237a9ca09e48..f91d3cf6b85c8af7a961f7026c1628b33ab0b1eb 100644 --- a/dune-workspace +++ b/dune-workspace @@ -1,4 +1,4 @@ -(lang dune 3.0) +(lang dune 3.7) (env (dev diff --git a/manifest/manifest.ml b/manifest/manifest.ml index 70979abc52e0bb5b737ec841edc516c3449044da..5fe6ee4ab15fa2a3f7d297048d8065c7212b51c0 100644 --- a/manifest/manifest.ml +++ b/manifest/manifest.ml @@ -61,11 +61,12 @@ module Ne_list = struct end module Dune = struct - type kind = Library | Executable + type kind = Library | Executable | Test of {tezt : bool} - type mode = Byte | Native | JS + type mode = Best | Byte | Native | JS let string_of_mode = function + | Best -> "best" | Byte -> "byte" | Native -> "native" | JS -> "js" @@ -189,23 +190,36 @@ module Dune = struct Basically the same as [Option.bind] except that [None] becomes [E]. *) let opt o f = match o with None -> E | Some x -> f x - let executable_or_library kind ?(public_names = Stdlib.List.[]) ?package - ?(instrumentation = Stdlib.List.[]) ?(libraries = []) ?flags + let glob_files expr = [S "glob_files"; S expr] + + let glob_files_rec expr = [S "glob_files_rec"; S expr] + + let executable_or_library_or_test kind ?(public_names = Stdlib.List.[]) + ?package ?(instrumentation = Stdlib.List.[]) ?(libraries = []) ?flags ?library_flags ?link_flags ?(inline_tests = false) ?(optional = false) ?(preprocess = Stdlib.List.[]) ?(preprocessor_deps = Stdlib.List.[]) ?(virtual_modules = Stdlib.List.[]) ?default_implementation ?implements ?modules ?modules_without_implementation ?modes ?foreign_stubs ?c_library_flags ?(ctypes = E) ?(private_modules = Stdlib.List.[]) - ?js_of_ocaml (names : string list) = + ?js_of_ocaml ?(dep_files = Stdlib.List.[]) ?(dep_globs = Stdlib.List.[]) + ?(dep_globs_rec = Stdlib.List.[]) (names : string list) = [ V [ S - (match (kind, names) with - | Library, [_] -> "library" - | Library, _ -> "libraries" - | Executable, [_] -> "executable" - | Executable, _ -> "executables"); + (match (kind, names, dep_files) with + | (Library | Executable), _, _ :: _ -> + invalid_arg "dep_files is only supported for tests" + | Library, [_], [] -> "library" + | Library, _, [] -> "libraries" + | Executable, [_], [] -> "executable" + | Executable, _, [] -> "executables" + | Test _, [_], _ -> "test" + | Test _, _, _ -> "tests"); + (match kind with + | Test {tezt = true} -> + [S "enabled_if"; [S "not"; S "%{env:CI=true}"]] + | _ -> E); (match names with | [name] -> [S "name"; S name] | _ -> S "names" :: of_atom_list names); @@ -235,8 +249,8 @@ module Dune = struct match (modes, js_of_ocaml) with | None, None -> (* Make the default dune behavior explicit *) - [Native] - | None, Some _ -> [Native; JS] + [Best] + | None, Some _ -> [Best; JS] | Some modes, _ -> (* always preserve mode if specified *) modes @@ -282,6 +296,18 @@ module Dune = struct ] ); (opt c_library_flags @@ fun x -> [S "c_library_flags"; of_atom_list x]); ctypes; + (match (dep_files, dep_globs, dep_globs_rec) with + | [], [], [] -> E + | _ -> + let deps = + let files = List.map (fun s -> S s) dep_files in + let globs = List.map glob_files dep_globs in + let globs_rec = List.map glob_files_rec dep_globs_rec in + match files @ globs @ globs_rec with + | [] -> assert false + | deps -> of_list deps + in + S "deps" :: deps); ]; ] @@ -322,35 +348,8 @@ module Dune = struct let run_exe exe_name args = run ("%{exe:" ^ exe_name ^ ".exe}") args - let runtest_js ?(alias = "runtest_js") ?package ~dep_files name = - alias_rule - alias - ?package - ~deps:dep_files - ~action:[S "run"; S "node"; S ("%{dep:./" ^ name ^ ".bc.js}")] - let file name = [S "file"; S name] - let glob_files expr = [S "glob_files"; S expr] - - let glob_files_rec expr = [S "glob_files_rec"; S expr] - - let runtest ?(alias = "runtest") ?package ~dep_files ~dep_globs ~dep_globs_rec - name = - let deps_dune = - let files = List.map (fun s -> S s) dep_files in - let globs = List.map glob_files dep_globs in - let globs_rec = List.map glob_files_rec dep_globs_rec in - match files @ globs @ globs_rec with - | [] -> None - | deps -> Some (of_list deps) - in - alias_rule - alias - ?package - ?deps_dune - ~action:[S "run"; S ("%{dep:./" ^ name ^ ".exe}")] - let setenv name value followup = [G [S "setenv"; S name; S value]; followup] let chdir_workspace_root followup = @@ -988,6 +987,7 @@ module Target = struct | Private_executable of string Ne_list.t | Test_executable of { names : string Ne_list.t; + tezt : bool; runtest_alias : string option; } @@ -1007,6 +1007,9 @@ module Target = struct c_library_flags : string list option; conflicts : t list; deps : t list; + dep_files : string list; + dep_globs : string list; + dep_globs_rec : string list; dune : Dune.s_expr; flags : Flags.t option; foreign_stubs : Dune.foreign_stubs option; @@ -1502,54 +1505,7 @@ module Target = struct | Test_executable _ -> false in let bisect_ppx = Option.value bisect_ppx ~default:not_a_test in - let runtest_rules = - let run_js = js_compatible in - let run_native = - match modes with - | None | Some [] -> true - | Some modes -> List.mem Dune.Native modes - in - match (kind, opam, dep_files) with - | Test_executable {names; runtest_alias = Some alias}, package, _ -> - let runtest_js_rules = - if run_js then - List.map - (fun name -> - Dune.runtest_js - ~alias:(alias ^ "_js") - ~dep_files - ?package - name) - (Ne_list.to_list names) - else [] - in - let runtest_rules = - if run_native then - List.map - (fun name -> - Dune.runtest - ~alias - ~dep_files - ~dep_globs - ~dep_globs_rec - ?package - name) - (Ne_list.to_list names) - else [] - in - runtest_rules @ runtest_js_rules - | Test_executable {names = name, _; runtest_alias = None}, _, _ :: _ -> - invalid_argf - "for targets which provide test executables such as %S, ~dep_files \ - is only meaningful for the runtest alias. It cannot be used with \ - no alias, i.e. ~alias:\"\"." - name - | _, _, _ :: _ -> assert false - | _ -> [] - in - let dune = - List.fold_right (fun x dune -> Dune.(x :: dune)) runtest_rules dune - in + register_internal { bisect_ppx; @@ -1557,6 +1513,9 @@ module Target = struct c_library_flags; conflicts; deps; + dep_files; + dep_globs; + dep_globs_rec; dune; flags; foreign_stubs; @@ -1654,17 +1613,20 @@ module Target = struct | [] -> invalid_argf "Target.private_exes: at least one name must be given" | head :: tail -> Private_executable (head, tail) - let test ?(alias = "runtest") ?dep_files ?dep_globs ?dep_globs_rec = + let test ?(alias = "runtest") ?dep_files ?dep_globs ?dep_globs_rec + ?(tezt = false) = let runtest_alias = if alias = "" then None else Some alias in internal ?dep_files ?dep_globs ?dep_globs_rec @@ fun test_name -> - Test_executable {names = (test_name, []); runtest_alias} + Test_executable {names = (test_name, []); tezt; runtest_alias} - let tests ?(alias = "runtest") ?dep_files ?dep_globs ?dep_globs_rec = + let tests ?(alias = "runtest") ?dep_files ?dep_globs ?dep_globs_rec + ?(tezt = false) = let runtest_alias = if alias = "" then None else Some alias in internal ?dep_files ?dep_globs ?dep_globs_rec @@ fun test_names -> match test_names with | [] -> invalid_arg "Target.tests: at least one name must be given" - | head :: tail -> Test_executable {names = (head, tail); runtest_alias} + | head :: tail -> + Test_executable {names = (head, tail); tezt; runtest_alias} let vendored_lib ?(released_on_opam = true) ?main_module ?(js_compatible = false) ?(npm_deps = []) name version = @@ -1858,7 +1820,7 @@ let register_tezt_targets ~make_tezt_exe = let (_ : Target.t option) = Target.test exe_name - ~alias:"runtezt" + ~tezt:true ~path ~with_macos_security_framework ~opam @@ -1890,7 +1852,7 @@ let register_tezt_targets ~make_tezt_exe = | Some modes -> (match List.filter - (function Dune.Byte | Native -> true | JS -> false) + (function Dune.Best | Byte | Native -> true | JS -> false) modes with | [] -> () @@ -2114,13 +2076,8 @@ let generate_dune (internal : Target.internal) = - No package means: global to the entire repo - A package means: private for the [opam] package only *) opam - | Test_executable _, Some _ -> - (* private executable can't have a package stanza, but we still want the manifest to know about the package *) - None - | Test_executable {runtest_alias = None; _}, None -> None - | Test_executable {runtest_alias = Some _; _}, None -> - (* Prevented by [Target.internal]. *) - assert false + | Test_executable {runtest_alias = Some _; _}, (Some _ as opam) -> opam + | Test_executable _, _ -> None in let instrumentation = @@ -2146,7 +2103,8 @@ let generate_dune (internal : Target.internal) = List.map get_internal_name (head :: tail), List.map get_public_name (head :: tail) ) | Private_executable (head, tail) -> (Executable, head :: tail, []) - | Test_executable {names = head, tail; _} -> (Executable, head :: tail, []) + | Test_executable {names = head, tail; tezt; _} -> + (Test {tezt}, head :: tail, []) in let get_virtual_target_name target = match Target.library_name_for_dune target with @@ -2163,7 +2121,7 @@ let generate_dune (internal : Target.internal) = in let ctypes = Option.map Ctypes.to_dune internal.ctypes in Dune.( - executable_or_library + executable_or_library_or_test kind internal_names ~public_names @@ -2188,6 +2146,7 @@ let generate_dune (internal : Target.internal) = ?ctypes ~private_modules:internal.private_modules ?js_of_ocaml:internal.js_of_ocaml + ~dep_files:internal.dep_files :: documentation :: create_empty_files :: internal.dune) (* Remove duplicates from a list. @@ -2468,6 +2427,10 @@ let as_opam_monorepo_opam_provided = function | Target.Opam_only {can_vendor = false; name; _} -> Some name | _ -> None +(* Bumping the dune lang version can result in different dune stanza + semantic and could require changes to the generation logic. *) +let dune_lang_version = "3.7" + let generate_opam ?release for_package (internals : Target.internal list) : Opam.t = let for_release = release <> None in @@ -2526,7 +2489,7 @@ let generate_opam ?release for_package (internals : Target.internal list) : let depends = { Opam.package = "dune"; - version = Version.at_least "3.0"; + version = Version.at_least dune_lang_version; with_test = Never; optional = false; } @@ -2771,10 +2734,6 @@ let generate_opam_files_for_release packages_dir opam_release_graph "octez" (generate_opam_meta_package opam_release_graph add_to_meta_package) -(* Bumping the dune lang version can result in different dune stanza - semantic and could require changes to the generation logic. *) -let dune_lang_version = "3.0" - let generate_dune_project_files () = write "dune-project" @@ fun fmt -> Format.fprintf fmt "(lang dune %s)@." dune_lang_version ; diff --git a/manifest/manifest.mli b/manifest/manifest.mli index 19f10e349dee3175b54e8ed7c3bd24533f4d8bc9..f7f47328ba6be7b7b2846bb7825322e786d4503d 100644 --- a/manifest/manifest.mli +++ b/manifest/manifest.mli @@ -33,10 +33,12 @@ module Dune : sig (** Compilation modes for executables. + - [Best]: compile to native code if [ocamlopt] is available and to bytecode + if not. - [Byte]: compile to bytecode. - [Native]: compile to native code. - [JS]: compile to JavaScript. *) - type mode = Byte | Native | JS + type mode = Best | Byte | Native | JS (** S-expressions. @@ -887,6 +889,7 @@ val test : ?dep_files:string list -> ?dep_globs:string list -> ?dep_globs_rec:string list -> + ?tezt:bool -> string maker (** Same as {!test} but with several names, to define multiple tests at once. *) @@ -895,6 +898,7 @@ val tests : ?dep_files:string list -> ?dep_globs:string list -> ?dep_globs_rec:string list -> + ?tezt:bool -> string list maker (** Register a Tezt test. diff --git a/opam/internal-devtools.opam b/opam/internal-devtools.opam index bbfbfcbae98d13996df520655800a2bb5370277d..b35fdf2d3036fb663c7515a1dc29f9bee5a01fe5 100644 --- a/opam/internal-devtools.opam +++ b/opam/internal-devtools.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "num" "re" { >= "1.9.0" } diff --git a/opam/octez-accuser-PtLimaPt.opam b/opam/octez-accuser-PtLimaPt.opam index e772fd499feaeb029d20fcb72bde42119233a4df..5264b311aa6daaa7ffc9b7c736568ab1ec105b2e 100644 --- a/opam/octez-accuser-PtLimaPt.opam +++ b/opam/octez-accuser-PtLimaPt.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-clic" diff --git a/opam/octez-accuser-PtMumbai.opam b/opam/octez-accuser-PtMumbai.opam index 5cc6f6bcb3eaf39d93e379f85ec2a594a6fece95..c051b4943ff89856ae0bcedefaf94f729a321dd8 100644 --- a/opam/octez-accuser-PtMumbai.opam +++ b/opam/octez-accuser-PtMumbai.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-clic" diff --git a/opam/octez-accuser-alpha.opam b/opam/octez-accuser-alpha.opam index 1287560e77ba25a122adabf27f33e291b3850691..f3e83301b2d3923e35da1fd01b557581a65dfd06 100644 --- a/opam/octez-accuser-alpha.opam +++ b/opam/octez-accuser-alpha.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-clic" diff --git a/opam/octez-alcotezt.opam b/opam/octez-alcotezt.opam index 92de02f5e009d231cd1c7afc6dff76db4a84bc8f..41c1216319ae0dfca069caffb84838be333231b2 100644 --- a/opam/octez-alcotezt.opam +++ b/opam/octez-alcotezt.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezt" { >= "3.0.0" } ] diff --git a/opam/octez-baker-PtLimaPt.opam b/opam/octez-baker-PtLimaPt.opam index 97f75ab79bb1c0c1330f476fcbdf8854abd3d86a..f171844844d4fae6531e7f4065aacb59c676aa00 100644 --- a/opam/octez-baker-PtLimaPt.opam +++ b/opam/octez-baker-PtLimaPt.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-clic" diff --git a/opam/octez-baker-PtMumbai.opam b/opam/octez-baker-PtMumbai.opam index a28919ebb272341667fd95ad1c1d9db9b8170517..4d2aa304d503bd783944db2750da5ae32c62b24f 100644 --- a/opam/octez-baker-PtMumbai.opam +++ b/opam/octez-baker-PtMumbai.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-clic" diff --git a/opam/octez-baker-alpha.opam b/opam/octez-baker-alpha.opam index 758737cb5af8d75954e4e07a7ed5db5eb1053fe7..21519089e6d82a21c047b7cc277b3586ebcbdaa4 100644 --- a/opam/octez-baker-alpha.opam +++ b/opam/octez-baker-alpha.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-clic" diff --git a/opam/octez-client.opam b/opam/octez-client.opam index a8592e2f90ea4ad317ba767f014e984c5948f702..33faf188be4c42a3e52bb279f0bcbd223efb3afa 100644 --- a/opam/octez-client.opam +++ b/opam/octez-client.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-clic" diff --git a/opam/octez-codec.opam b/opam/octez-codec.opam index 2ac24acb68f0e013c838d4be237b11f60a3f54b6..324606c3c142c752054fbb1514b890b732141ed4 100644 --- a/opam/octez-codec.opam +++ b/opam/octez-codec.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "data-encoding" { >= "0.7.1" & < "1.0.0" } "tezos-base" diff --git a/opam/octez-dac-node.opam b/opam/octez-dac-node.opam index 6fefa6a0777034ee1d681550400cb23d78dd9c93..a5b545d11679e068425ddcd861bfcd16bbc65186 100644 --- a/opam/octez-dac-node.opam +++ b/opam/octez-dac-node.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-clic" diff --git a/opam/octez-dal-node.opam b/opam/octez-dal-node.opam index 63fdde8fcec0d776c3eadaaf77730231a4223902..36a309870aa919f8e4a49240f8a9094a4720df0a 100644 --- a/opam/octez-dal-node.opam +++ b/opam/octez-dal-node.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-clic" diff --git a/opam/octez-evm-proxy.opam b/opam/octez-evm-proxy.opam index c2f927b1d2aa2e4cfca220e65db91bb178662dc8..e310b8f86fe3f54f639a442f58cb0d9ea136bce0 100644 --- a/opam/octez-evm-proxy.opam +++ b/opam/octez-evm-proxy.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-clic" diff --git a/opam/octez-injector.opam b/opam/octez-injector.opam index 48eae6fd1f3bdd68633d3a22b8d033eec4ff45ac..011bf0f146fde0f7e21f03b1c000db6b882dde8b 100644 --- a/opam/octez-injector.opam +++ b/opam/octez-injector.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "logs" diff --git a/opam/octez-node-config.opam b/opam/octez-node-config.opam index 48a3e6a157c96cd918155db78cf2420a1b20b102..eab5189dd9d80d0665c0c759c3b140507fecf616 100644 --- a/opam/octez-node-config.opam +++ b/opam/octez-node-config.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-stdlib-unix" diff --git a/opam/octez-node.opam b/opam/octez-node.opam index 5b428c0cde7eea8d5e853d7c6f8e99c3fa0e8636..442f66cdf0eae66c4250c18e339e983fe2908378 100644 --- a/opam/octez-node.opam +++ b/opam/octez-node.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-version" diff --git a/opam/octez-protocol-compiler.opam b/opam/octez-protocol-compiler.opam index d8d78bf8148228f25bd9656715909363714d5d66..4f55685dadfa37bb23de62438fd8c5875453fdba 100644 --- a/opam/octez-protocol-compiler.opam +++ b/opam/octez-protocol-compiler.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-protocol-environment" diff --git a/opam/octez-proxy-server.opam b/opam/octez-proxy-server.opam index 39804ccb04b6723c044d2e559582ede316343545..7539b39d5fe8d89a5eaaadb58ab07587e87509ad 100644 --- a/opam/octez-proxy-server.opam +++ b/opam/octez-proxy-server.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-stdlib-unix" diff --git a/opam/octez-signer.opam b/opam/octez-signer.opam index e3374c24ea9ab56f533b871e0add19e184a39b87..9ed8772988cc7f6abd07d92f7c5611f25d13f0e8 100644 --- a/opam/octez-signer.opam +++ b/opam/octez-signer.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-clic" diff --git a/opam/octez-smart-rollup-client-PtMumbai.opam b/opam/octez-smart-rollup-client-PtMumbai.opam index 2c4a83765c9a11828fa529789963facb7ce89932..10efb68a02b81ea89d650bc272d8db43920e7267 100644 --- a/opam/octez-smart-rollup-client-PtMumbai.opam +++ b/opam/octez-smart-rollup-client-PtMumbai.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-protocol-016-PtMumbai" diff --git a/opam/octez-smart-rollup-client-alpha.opam b/opam/octez-smart-rollup-client-alpha.opam index 7b4611bad7509f6236fae0bbd79ef6bbbc094176..b966651a06ab010264077bb30756efa03cb1f7a4 100644 --- a/opam/octez-smart-rollup-client-alpha.opam +++ b/opam/octez-smart-rollup-client-alpha.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-protocol-alpha" diff --git a/opam/octez-smart-rollup-node-PtMumbai.opam b/opam/octez-smart-rollup-node-PtMumbai.opam index 598e7461c46dc088f4f43574012a9326c87ea764..e002afe19255bea2a872760da0eded3c22bdf9aa 100644 --- a/opam/octez-smart-rollup-node-PtMumbai.opam +++ b/opam/octez-smart-rollup-node-PtMumbai.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-stdlib-unix" diff --git a/opam/octez-smart-rollup-node-alpha.opam b/opam/octez-smart-rollup-node-alpha.opam index cf8a0b48f0fba850c9965d81e02e2940c19c02d0..29ac57fa2233fee3b2b9aa15d430e13e188ca535 100644 --- a/opam/octez-smart-rollup-node-alpha.opam +++ b/opam/octez-smart-rollup-node-alpha.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-stdlib-unix" diff --git a/opam/octez-smart-rollup-wasm-debugger.opam b/opam/octez-smart-rollup-wasm-debugger.opam index 6e7b249fd7f3e657acc1a3e4bd28dbbc6e8354b8..4b0224d2d540a180658e5c8f0eded16e60e6926a 100644 --- a/opam/octez-smart-rollup-wasm-debugger.opam +++ b/opam/octez-smart-rollup-wasm-debugger.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-clic" diff --git a/opam/octez-snoop.opam b/opam/octez-snoop.opam index 1acdff09ae754eaa824b4a84eaae12f7336878b1..eb46ac2abe11b1fbd6f876b9da3e5c0ce1592915 100644 --- a/opam/octez-snoop.opam +++ b/opam/octez-snoop.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-stdlib-unix" diff --git a/opam/octez-testnet-scenarios.opam b/opam/octez-testnet-scenarios.opam index efac90b654463a899f6ef48a3880b84905d20467..7ebe5338aa364e33fc865431ae3cf9bb8fe5da95 100644 --- a/opam/octez-testnet-scenarios.opam +++ b/opam/octez-testnet-scenarios.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezt" { >= "3.0.0" } "tezt-tezos" diff --git a/opam/octez-tx-rollup-client-PtLimaPt.opam b/opam/octez-tx-rollup-client-PtLimaPt.opam index a311a1ade58a5dcd015a3d27edbadafc86fda8c2..10ce69081ec529b2dce0a22def9c2b980bd14870 100644 --- a/opam/octez-tx-rollup-client-PtLimaPt.opam +++ b/opam/octez-tx-rollup-client-PtLimaPt.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-clic" diff --git a/opam/octez-tx-rollup-node-PtLimaPt.opam b/opam/octez-tx-rollup-node-PtLimaPt.opam index f2d0cc84dc8f6eeccc7ccd9a8cdd7d90343a1cac..f3d37167d1f821a505724db109b3f0bbbfc36e1f 100644 --- a/opam/octez-tx-rollup-node-PtLimaPt.opam +++ b/opam/octez-tx-rollup-node-PtLimaPt.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-clic" diff --git a/opam/tezos-015-PtLimaPt-test-helpers.opam b/opam/tezos-015-PtLimaPt-test-helpers.opam index d315039c5bca2b271bc7552275f02e01c90c31ce..dadc07dbfe491e47cc1928476417b889a6529790 100644 --- a/opam/tezos-015-PtLimaPt-test-helpers.opam +++ b/opam/tezos-015-PtLimaPt-test-helpers.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "alcotest-lwt" { >= "1.5.0" } "qcheck-alcotest" { >= "0.20" } diff --git a/opam/tezos-016-PtMumbai-test-helpers.opam b/opam/tezos-016-PtMumbai-test-helpers.opam index 6f1f1d6cb1f214268f4133a9ad5470ca0a9eb234..486ddddc1556f270901080a6f46ebbec8584b0c3 100644 --- a/opam/tezos-016-PtMumbai-test-helpers.opam +++ b/opam/tezos-016-PtMumbai-test-helpers.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "alcotest-lwt" { >= "1.5.0" } "qcheck-alcotest" { >= "0.20" } diff --git a/opam/tezos-alpha-test-helpers.opam b/opam/tezos-alpha-test-helpers.opam index 28b43b89b5b8dbcb5bde64b34edb5a771fea8a12..6f5ec61e3f9286c481e60a715175b86fc21b2e64 100644 --- a/opam/tezos-alpha-test-helpers.opam +++ b/opam/tezos-alpha-test-helpers.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "alcotest-lwt" { >= "1.5.0" } "qcheck-alcotest" { >= "0.20" } diff --git a/opam/tezos-baking-015-PtLimaPt-commands.opam b/opam/tezos-baking-015-PtLimaPt-commands.opam index 1544e16301f0b13467c72bb52598a8621891e1cd..9a888cbea5645791795c504bd53d3d6e62e22862 100644 --- a/opam/tezos-baking-015-PtLimaPt-commands.opam +++ b/opam/tezos-baking-015-PtLimaPt-commands.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-protocol-015-PtLimaPt" diff --git a/opam/tezos-baking-015-PtLimaPt.opam b/opam/tezos-baking-015-PtLimaPt.opam index f86e4c334926880ea2ed793e66bb90cdda2799bb..6b1bee9a5c4847b83a2ab9265e2c1992ecfa96e1 100644 --- a/opam/tezos-baking-015-PtLimaPt.opam +++ b/opam/tezos-baking-015-PtLimaPt.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-clic" @@ -46,6 +46,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Tezos/Protocol: base library for `tezos-baker/accuser`" diff --git a/opam/tezos-baking-016-PtMumbai-commands.opam b/opam/tezos-baking-016-PtMumbai-commands.opam index 2ac37cc84411d6b01592f02765857be97ef226b5..9eed6abd39260a237f04563ccda44ae438d3e09e 100644 --- a/opam/tezos-baking-016-PtMumbai-commands.opam +++ b/opam/tezos-baking-016-PtMumbai-commands.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-protocol-016-PtMumbai" diff --git a/opam/tezos-baking-016-PtMumbai.opam b/opam/tezos-baking-016-PtMumbai.opam index 3e26d967a7861207170a6b8253e6dab94b33b2fe..937bfc6182685fd71beafd56838ed1ed8ccdb467 100644 --- a/opam/tezos-baking-016-PtMumbai.opam +++ b/opam/tezos-baking-016-PtMumbai.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-clic" @@ -46,6 +46,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Tezos/Protocol: base library for `tezos-baker/accuser`" diff --git a/opam/tezos-baking-alpha-commands.opam b/opam/tezos-baking-alpha-commands.opam index e8bef8b44d4954bfe8c783867da3e418cb81a7e6..fc6ddcf8703add66b4b8ce74991711af9101170c 100644 --- a/opam/tezos-baking-alpha-commands.opam +++ b/opam/tezos-baking-alpha-commands.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-protocol-alpha" diff --git a/opam/tezos-baking-alpha.opam b/opam/tezos-baking-alpha.opam index e2711ed928ef4da54aa17600e15a42d66c58b69d..17dcd92bb24e0ad8bbf22ca6ee64b1fed8e46f7c 100644 --- a/opam/tezos-baking-alpha.opam +++ b/opam/tezos-baking-alpha.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-clic" @@ -47,6 +47,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Tezos/Protocol: base library for `tezos-baker/accuser`" diff --git a/opam/tezos-base-test-helpers.opam b/opam/tezos-base-test-helpers.opam index b90aaa1d71d2f70f805efb5b0731c020ee546417..13ae76d9f2bd7a340a6a33fbfb84c3c989379755 100644 --- a/opam/tezos-base-test-helpers.opam +++ b/opam/tezos-base-test-helpers.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-stdlib-unix" diff --git a/opam/tezos-base.opam b/opam/tezos-base.opam index c8ad4e8bb84263e8a00c57c6a458f20db8f0bcbd..abbf531a686d1eb4a0fe6e0dce99a89e8df1aab1 100644 --- a/opam/tezos-base.opam +++ b/opam/tezos-base.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-stdlib" "tezos-crypto" @@ -33,6 +33,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Tezos: meta-package and pervasive type definitions for Tezos" diff --git a/opam/tezos-benchmark-015-PtLimaPt.opam b/opam/tezos-benchmark-015-PtLimaPt.opam index 7df4c5ff07297e5997d1220a1e40806ea0c0b6b8..17fa76bd986914112854285c1735dd0a296d6e24 100644 --- a/opam/tezos-benchmark-015-PtLimaPt.opam +++ b/opam/tezos-benchmark-015-PtLimaPt.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-stdlib" "tezos-base" diff --git a/opam/tezos-benchmark-016-PtMumbai.opam b/opam/tezos-benchmark-016-PtMumbai.opam index e7ad37b58485c67b421258ab9070e6d379ad3cb9..26cdb6945afa9089776c8e04a98078305e1a64d0 100644 --- a/opam/tezos-benchmark-016-PtMumbai.opam +++ b/opam/tezos-benchmark-016-PtMumbai.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-stdlib" "tezos-base" diff --git a/opam/tezos-benchmark-alpha.opam b/opam/tezos-benchmark-alpha.opam index a08635f89551209fb40650dfbcd2b8784cbaa265..1993270774be1a4eea2ea9601994d7ffc7bcb431 100644 --- a/opam/tezos-benchmark-alpha.opam +++ b/opam/tezos-benchmark-alpha.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-stdlib" "tezos-base" diff --git a/opam/tezos-benchmark-examples.opam b/opam/tezos-benchmark-examples.opam index 45ede119849c05aaa5ab6f5c056407e85a653f29..252266c3025a31a16f3456525eb5cf3c44e674da 100644 --- a/opam/tezos-benchmark-examples.opam +++ b/opam/tezos-benchmark-examples.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-stdlib-unix" diff --git a/opam/tezos-benchmark-tests.opam b/opam/tezos-benchmark-tests.opam index 2f7622e316ad2919926ac153933196940da32e8b..c97c82d85ddfc52e14c95f72ed2154ecdd7901b9 100644 --- a/opam/tezos-benchmark-tests.opam +++ b/opam/tezos-benchmark-tests.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezt" { with-test & >= "3.0.0" } "octez-alcotezt" {with-test} @@ -23,6 +23,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Tezos: tests for lib-benchmarks" diff --git a/opam/tezos-benchmark-type-inference-015-PtLimaPt.opam b/opam/tezos-benchmark-type-inference-015-PtLimaPt.opam index 8b52d7d2a28f99951eee00f52fb96a3dc692c274..beb4006fcf1d10e54af50db4c01f621a73210661 100644 --- a/opam/tezos-benchmark-type-inference-015-PtLimaPt.opam +++ b/opam/tezos-benchmark-type-inference-015-PtLimaPt.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-stdlib" "tezos-error-monad" diff --git a/opam/tezos-benchmark-type-inference-016-PtMumbai.opam b/opam/tezos-benchmark-type-inference-016-PtMumbai.opam index 7a7ba310d590cf5db682d0deba6f77aff4dda6f0..b02e29040ea1d5c709124f06a61f4206bf3bb585 100644 --- a/opam/tezos-benchmark-type-inference-016-PtMumbai.opam +++ b/opam/tezos-benchmark-type-inference-016-PtMumbai.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-stdlib" "tezos-error-monad" diff --git a/opam/tezos-benchmark-type-inference-alpha.opam b/opam/tezos-benchmark-type-inference-alpha.opam index d1032c79199909975c8c6082e7edee80d6fadfb8..981b7271433abb1e5c5c8eeecfdcd66344243ba9 100644 --- a/opam/tezos-benchmark-type-inference-alpha.opam +++ b/opam/tezos-benchmark-type-inference-alpha.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-stdlib" "tezos-error-monad" diff --git a/opam/tezos-benchmark.opam b/opam/tezos-benchmark.opam index 762dcf209b6d92d007fc6ac3565fd70c378404cb..8181f1a1d123eb6cdb6132645a54d5170cf8c925 100644 --- a/opam/tezos-benchmark.opam +++ b/opam/tezos-benchmark.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "ppx_expect" "tezos-base" diff --git a/opam/tezos-benchmarks-proto-015-PtLimaPt.opam b/opam/tezos-benchmarks-proto-015-PtLimaPt.opam index 81e9786f7b3902c3f7c8f67784df0020a1f346dd..9cdd45deb26735b71b1fb6528fa5420d41d1352d 100644 --- a/opam/tezos-benchmarks-proto-015-PtLimaPt.opam +++ b/opam/tezos-benchmarks-proto-015-PtLimaPt.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-stdlib" "tezos-base" diff --git a/opam/tezos-benchmarks-proto-016-PtMumbai.opam b/opam/tezos-benchmarks-proto-016-PtMumbai.opam index 0fdc37e64aeefd17a890e58e67e0086f52497840..632d40715d9eb4a6c8c7f6638dc764f29d008de0 100644 --- a/opam/tezos-benchmarks-proto-016-PtMumbai.opam +++ b/opam/tezos-benchmarks-proto-016-PtMumbai.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-stdlib" "tezos-base" diff --git a/opam/tezos-benchmarks-proto-alpha.opam b/opam/tezos-benchmarks-proto-alpha.opam index b514fbd75814e1064953290f84ebe73915ce4e7b..880ed829bcd8ef9b0fd0050957f5d3a0b6394012 100644 --- a/opam/tezos-benchmarks-proto-alpha.opam +++ b/opam/tezos-benchmarks-proto-alpha.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-stdlib" "tezos-base" diff --git a/opam/tezos-bls12-381-polynomial-internal.opam b/opam/tezos-bls12-381-polynomial-internal.opam index 47346b465d4ad57f15ff705b7948369147cebefe..ec7d6b2f8d1584312ffe94452ae1b773d075e1b3 100644 --- a/opam/tezos-bls12-381-polynomial-internal.opam +++ b/opam/tezos-bls12-381-polynomial-internal.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "ppx_repr" { >= "0.6.0" } "bls12-381" { >= "5.0.0" & < "5.1.0" } diff --git a/opam/tezos-clic.opam b/opam/tezos-clic.opam index e9f831c8e40fa6ba284d86b6cf3ae2e896cc0c81..07d4ba98ff8c5b3e3cc6704c27390fc509baa503 100644 --- a/opam/tezos-clic.opam +++ b/opam/tezos-clic.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-stdlib" "lwt" { >= "5.6.0" } @@ -23,6 +23,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Tezos: library of auto-documented command-line-parsing combinators" diff --git a/opam/tezos-client-000-Ps9mPmXa.opam b/opam/tezos-client-000-Ps9mPmXa.opam index 9e674739be9b9f4408edffb67d69aa470badea2a..90ce9a6b6b61447dfaea2b2a594affe1613f48d9 100644 --- a/opam/tezos-client-000-Ps9mPmXa.opam +++ b/opam/tezos-client-000-Ps9mPmXa.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-clic" diff --git a/opam/tezos-client-001-PtCJ7pwo.opam b/opam/tezos-client-001-PtCJ7pwo.opam index c2da38a1d0030a7b72903a695c2e8c58286c1011..88f42adeda5f574393eb619ff0271cf500d4df2f 100644 --- a/opam/tezos-client-001-PtCJ7pwo.opam +++ b/opam/tezos-client-001-PtCJ7pwo.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-clic" diff --git a/opam/tezos-client-002-PsYLVpVv.opam b/opam/tezos-client-002-PsYLVpVv.opam index cd13e5891cc2da63f4a0d8c5821a9dff1470df47..55d38b63a7486741f224e9afdb06a1a39dbbce2b 100644 --- a/opam/tezos-client-002-PsYLVpVv.opam +++ b/opam/tezos-client-002-PsYLVpVv.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-clic" diff --git a/opam/tezos-client-003-PsddFKi3.opam b/opam/tezos-client-003-PsddFKi3.opam index 695d86deb350cd957854f12ff788de63903cb30b..d29754da0db5f8d27686f8cab4338a86b73cfda9 100644 --- a/opam/tezos-client-003-PsddFKi3.opam +++ b/opam/tezos-client-003-PsddFKi3.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-clic" diff --git a/opam/tezos-client-004-Pt24m4xi.opam b/opam/tezos-client-004-Pt24m4xi.opam index eed3ad4aee130e7c100425ec402649132ecdf150..91996174d9a8660ea573ee2c13aa5cdde72bd2fb 100644 --- a/opam/tezos-client-004-Pt24m4xi.opam +++ b/opam/tezos-client-004-Pt24m4xi.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-clic" diff --git a/opam/tezos-client-005-PsBabyM1.opam b/opam/tezos-client-005-PsBabyM1.opam index c2ab6573a6478c37ab7926acc5372694c65c7c70..4b816557a7de18f1c5d0b7dd47ce63a41a7148b9 100644 --- a/opam/tezos-client-005-PsBabyM1.opam +++ b/opam/tezos-client-005-PsBabyM1.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-clic" diff --git a/opam/tezos-client-006-PsCARTHA.opam b/opam/tezos-client-006-PsCARTHA.opam index 45235fc2d0a42756210997892fdcb54e44c9820d..c8d14e06885a06c672247bf523ac85006225e278 100644 --- a/opam/tezos-client-006-PsCARTHA.opam +++ b/opam/tezos-client-006-PsCARTHA.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-clic" diff --git a/opam/tezos-client-007-PsDELPH1.opam b/opam/tezos-client-007-PsDELPH1.opam index 7bac04368266dd0f525ed85d9ef48f70f708d2f0..44cfddb2f85317714fa4df4635c124d935802a87 100644 --- a/opam/tezos-client-007-PsDELPH1.opam +++ b/opam/tezos-client-007-PsDELPH1.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-clic" diff --git a/opam/tezos-client-008-PtEdo2Zk.opam b/opam/tezos-client-008-PtEdo2Zk.opam index a585686fb45eee1b1a5f4fedca8237a4ca103535..df427350566d764196865c6cf47a4334dd287cd5 100644 --- a/opam/tezos-client-008-PtEdo2Zk.opam +++ b/opam/tezos-client-008-PtEdo2Zk.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-clic" diff --git a/opam/tezos-client-009-PsFLoren.opam b/opam/tezos-client-009-PsFLoren.opam index 0e939920859e6f7b827ee91cfa3774632c34727d..81705ad6ddfee5cd92b277f1cddd38dd75933667 100644 --- a/opam/tezos-client-009-PsFLoren.opam +++ b/opam/tezos-client-009-PsFLoren.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "ppx_expect" "tezos-base" diff --git a/opam/tezos-client-010-PtGRANAD.opam b/opam/tezos-client-010-PtGRANAD.opam index 1af66b2cffce6e26ee233a19f1ceb974160315b7..0f516adc16c63574503438534db535da5fbe4fb3 100644 --- a/opam/tezos-client-010-PtGRANAD.opam +++ b/opam/tezos-client-010-PtGRANAD.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "ppx_expect" "tezos-base" diff --git a/opam/tezos-client-011-PtHangz2.opam b/opam/tezos-client-011-PtHangz2.opam index 604b9ada6f0bdd87939cec8bfdd82604968ccf50..90e9d55b3ee5e7d621cd6ff2b34ed99827a60a5b 100644 --- a/opam/tezos-client-011-PtHangz2.opam +++ b/opam/tezos-client-011-PtHangz2.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "ppx_expect" "tezos-base" @@ -40,6 +40,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Tezos/Protocol: protocol specific library for `tezos-client`" diff --git a/opam/tezos-client-012-Psithaca.opam b/opam/tezos-client-012-Psithaca.opam index b693db3a40a4cf94131dae1d7069f9c08486041c..86953732f10190133219c78956088074f83b5c92 100644 --- a/opam/tezos-client-012-Psithaca.opam +++ b/opam/tezos-client-012-Psithaca.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "ppx_expect" "tezos-base" @@ -40,6 +40,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Tezos/Protocol: protocol specific library for `tezos-client`" diff --git a/opam/tezos-client-013-PtJakart.opam b/opam/tezos-client-013-PtJakart.opam index a1d212c513e1115006c7719333f73d9b94bd3b93..63dda326c98b8077ad7cd26b899dc31cc9feea84 100644 --- a/opam/tezos-client-013-PtJakart.opam +++ b/opam/tezos-client-013-PtJakart.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "ppx_expect" "tezos-base" @@ -40,6 +40,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Tezos/Protocol: protocol specific library for `tezos-client`" diff --git a/opam/tezos-client-014-PtKathma.opam b/opam/tezos-client-014-PtKathma.opam index 5036d1f663f5552d6a0a7ee7599cef326b3da2bf..f6dbc29307ebc9f924e341194b1dcc4f274f020c 100644 --- a/opam/tezos-client-014-PtKathma.opam +++ b/opam/tezos-client-014-PtKathma.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "ppx_expect" "tezos-base" @@ -40,6 +40,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Tezos/Protocol: protocol specific library for `tezos-client`" diff --git a/opam/tezos-client-015-PtLimaPt.opam b/opam/tezos-client-015-PtLimaPt.opam index 0b111f186e2d8f5b19bf7535720f955ab687a0b1..a893df4cac6d7661e0210590e0985dfdc205e832 100644 --- a/opam/tezos-client-015-PtLimaPt.opam +++ b/opam/tezos-client-015-PtLimaPt.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "ppx_expect" "tezos-base" @@ -40,6 +40,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Tezos/Protocol: protocol specific library for `tezos-client`" diff --git a/opam/tezos-client-016-PtMumbai.opam b/opam/tezos-client-016-PtMumbai.opam index a38b3d232e82c67c83a5b8ca38c24cd29e109f27..221a563d977b7502b39b22274c3abd1c8197cb2e 100644 --- a/opam/tezos-client-016-PtMumbai.opam +++ b/opam/tezos-client-016-PtMumbai.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "ppx_expect" "tezos-base" @@ -41,6 +41,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Tezos/Protocol: protocol specific library for `tezos-client`" diff --git a/opam/tezos-client-alpha.opam b/opam/tezos-client-alpha.opam index 7a773bbe0bf7b41124198c13c059e707da40b559..230a8e39b90153b64c98e318926cc3b0f995a4e2 100644 --- a/opam/tezos-client-alpha.opam +++ b/opam/tezos-client-alpha.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "ppx_expect" "tezos-base" @@ -41,6 +41,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Tezos/Protocol: protocol specific library for `tezos-client`" diff --git a/opam/tezos-client-base-unix.opam b/opam/tezos-client-base-unix.opam index f7bed0a8480a3ad009ee732950cda2e6f12016a2..c4732846821326acd225cdaffbc85814050a486a 100644 --- a/opam/tezos-client-base-unix.opam +++ b/opam/tezos-client-base-unix.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-clic" diff --git a/opam/tezos-client-base.opam b/opam/tezos-client-base.opam index 4601644e9de4a789e02e5bf6dd5b42dbfe4d826d..753618e273d692f50217104b59a2ed8e1693cb48 100644 --- a/opam/tezos-client-base.opam +++ b/opam/tezos-client-base.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-clic" diff --git a/opam/tezos-client-commands.opam b/opam/tezos-client-commands.opam index b458c09745b422f37b278b0923696b7f6283ece5..ec1a03a0c7ba8d48d940507d9d858154519fc40b 100644 --- a/opam/tezos-client-commands.opam +++ b/opam/tezos-client-commands.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-rpc" diff --git a/opam/tezos-client-demo-counter.opam b/opam/tezos-client-demo-counter.opam index 952e36b346745bbe17699ffab975968d269bd573..0c6920c6d855b2cdfa479e47142ec6512abf87f8 100644 --- a/opam/tezos-client-demo-counter.opam +++ b/opam/tezos-client-demo-counter.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-shell-services" diff --git a/opam/tezos-client-genesis.opam b/opam/tezos-client-genesis.opam index 923ca9883693d58e1cafffa33059e12deaa77627..f3c82fba288426ae17f5bc102f1905a9e4cc5c04 100644 --- a/opam/tezos-client-genesis.opam +++ b/opam/tezos-client-genesis.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-shell-services" diff --git a/opam/tezos-context-ops.opam b/opam/tezos-context-ops.opam index 262d212ef07f6994bd5db097c90f0dc72bc8c40a..e3c9544b11592483b23a67ec569fb788275b4602 100644 --- a/opam/tezos-context-ops.opam +++ b/opam/tezos-context-ops.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-error-monad" diff --git a/opam/tezos-context.opam b/opam/tezos-context.opam index 2f6b16ecb39d5a1aa6e37c9d198d5875448ae9a1..cf45c9478003d05cdfbd275636024a5d830de323 100644 --- a/opam/tezos-context.opam +++ b/opam/tezos-context.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-stdlib" @@ -28,6 +28,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Tezos: on-disk context abstraction for `octez-node`" diff --git a/opam/tezos-crypto-dal.opam b/opam/tezos-crypto-dal.opam index 072c8adf64004eb958908022a52c8b36e42dada9..1a722374e1425152678b40f6f73426ad5f13ee2e 100644 --- a/opam/tezos-crypto-dal.opam +++ b/opam/tezos-crypto-dal.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-stdlib" "tezos-error-monad" diff --git a/opam/tezos-crypto.opam b/opam/tezos-crypto.opam index 360fd0602f8197eebd04b1088e92888edae95042..46b6334dcfba5fce26afbe9b63b1088feb0e9f79 100644 --- a/opam/tezos-crypto.opam +++ b/opam/tezos-crypto.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-stdlib" "data-encoding" { >= "0.7.1" & < "1.0.0" } diff --git a/opam/tezos-dac-alpha.opam b/opam/tezos-dac-alpha.opam index e5feb6cfd0a86225e83a24ad29068e5b715d5123..cac6b86fc92c745060921ce3e45737b24b1d0172 100644 --- a/opam/tezos-dac-alpha.opam +++ b/opam/tezos-dac-alpha.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "ppx_expect" "tezos-base" diff --git a/opam/tezos-dac-node-lib-test.opam b/opam/tezos-dac-node-lib-test.opam index f21b671a59dda4ffc68ec874dc9cfd9416647ffb..4fee5a48e83abde69b3396634070e9903ba85fc1 100644 --- a/opam/tezos-dac-node-lib-test.opam +++ b/opam/tezos-dac-node-lib-test.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-stdlib" {with-test} "tezos-stdlib-unix" {with-test} diff --git a/opam/tezos-dac-node-lib.opam b/opam/tezos-dac-node-lib.opam index cb3fe1f6e0e15827b7d5b75f02878be16ff0b0bf..ba66af3eaace2d70e5a8aead363fe182cdcf23fb 100644 --- a/opam/tezos-dac-node-lib.opam +++ b/opam/tezos-dac-node-lib.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-client-base" diff --git a/opam/tezos-dal-016-PtMumbai.opam b/opam/tezos-dal-016-PtMumbai.opam index 24e56628f6b679159a4c5928f8d267c4f95fd786..879bdbc1d37b1b52f72c58ab118663d117ac36b2 100644 --- a/opam/tezos-dal-016-PtMumbai.opam +++ b/opam/tezos-dal-016-PtMumbai.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "ppx_expect" "tezos-base" diff --git a/opam/tezos-dal-alpha.opam b/opam/tezos-dal-alpha.opam index 054b02ffe0c5b20b9348dd938b1e0babf8b84563..d249f18e57cb50d38cc4aa0a4fe479da7b4dc966 100644 --- a/opam/tezos-dal-alpha.opam +++ b/opam/tezos-dal-alpha.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "ppx_expect" "tezos-base" diff --git a/opam/tezos-dal-node-lib.opam b/opam/tezos-dal-node-lib.opam index 7f3dd1d6870c8a6a5660fe51d63368183106d487..6a8626ed83a48f7ec6ede5e1af328943b561676a 100644 --- a/opam/tezos-dal-node-lib.opam +++ b/opam/tezos-dal-node-lib.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-dal-node-services" diff --git a/opam/tezos-dal-node-services.opam b/opam/tezos-dal-node-services.opam index e81e44f90c825145f4a709d9c00ad31affd81a4c..da2c84df80f3f0177372657255905b7509cdb95e 100644 --- a/opam/tezos-dal-node-services.opam +++ b/opam/tezos-dal-node-services.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-rpc" diff --git a/opam/tezos-embedded-protocol-000-Ps9mPmXa.opam b/opam/tezos-embedded-protocol-000-Ps9mPmXa.opam index 3a00e07e317e921d21b7672d30d4f004aa89b860..756894df12e1103af99f2a7da5682494f79adf30 100644 --- a/opam/tezos-embedded-protocol-000-Ps9mPmXa.opam +++ b/opam/tezos-embedded-protocol-000-Ps9mPmXa.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-protocol-000-Ps9mPmXa" "tezos-protocol-updater" diff --git a/opam/tezos-embedded-protocol-001-PtCJ7pwo.opam b/opam/tezos-embedded-protocol-001-PtCJ7pwo.opam index aa116496718b46bba51264a1a6369ae371941146..c6f24671fd8a5a3c71b2aa6c83fec5c99d34b0d9 100644 --- a/opam/tezos-embedded-protocol-001-PtCJ7pwo.opam +++ b/opam/tezos-embedded-protocol-001-PtCJ7pwo.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-protocol-001-PtCJ7pwo" "tezos-protocol-updater" diff --git a/opam/tezos-embedded-protocol-002-PsYLVpVv.opam b/opam/tezos-embedded-protocol-002-PsYLVpVv.opam index 4a5e513cf906b00fd1dd53b4d0b72d2b7411f52c..a6e47106fa6c585f5ef300c18d281171e335b2df 100644 --- a/opam/tezos-embedded-protocol-002-PsYLVpVv.opam +++ b/opam/tezos-embedded-protocol-002-PsYLVpVv.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-protocol-002-PsYLVpVv" "tezos-protocol-updater" diff --git a/opam/tezos-embedded-protocol-003-PsddFKi3.opam b/opam/tezos-embedded-protocol-003-PsddFKi3.opam index 60a126fc7c79603c48ee84260045b266d71ffa43..5d7b41c21a0dbdcf5705250876dca70b17fb1b8a 100644 --- a/opam/tezos-embedded-protocol-003-PsddFKi3.opam +++ b/opam/tezos-embedded-protocol-003-PsddFKi3.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-protocol-003-PsddFKi3" "tezos-protocol-updater" diff --git a/opam/tezos-embedded-protocol-004-Pt24m4xi.opam b/opam/tezos-embedded-protocol-004-Pt24m4xi.opam index 24f34239c8fc1c06e6d502795d425e30278ee250..5473da6391237a2a069b0403e0bd1b27f00a5362 100644 --- a/opam/tezos-embedded-protocol-004-Pt24m4xi.opam +++ b/opam/tezos-embedded-protocol-004-Pt24m4xi.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-protocol-004-Pt24m4xi" "tezos-protocol-updater" diff --git a/opam/tezos-embedded-protocol-005-PsBABY5H.opam b/opam/tezos-embedded-protocol-005-PsBABY5H.opam index c716326d1d9d0825b8cb1cbc69669ef97a722b64..11aa164fe442902117ce8d454f97bb472969b27f 100644 --- a/opam/tezos-embedded-protocol-005-PsBABY5H.opam +++ b/opam/tezos-embedded-protocol-005-PsBABY5H.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-protocol-005-PsBABY5H" "tezos-protocol-updater" diff --git a/opam/tezos-embedded-protocol-005-PsBabyM1.opam b/opam/tezos-embedded-protocol-005-PsBabyM1.opam index 696943c72dca945a43e2493fc2b6451d24131aa1..1c2c319abf3c5dd27c9670cf90550a039f49a706 100644 --- a/opam/tezos-embedded-protocol-005-PsBabyM1.opam +++ b/opam/tezos-embedded-protocol-005-PsBabyM1.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-protocol-005-PsBabyM1" "tezos-protocol-updater" diff --git a/opam/tezos-embedded-protocol-006-PsCARTHA.opam b/opam/tezos-embedded-protocol-006-PsCARTHA.opam index f0f48fcd09c081d76532a7af83f73e074c752f84..0094488ce70ad2da50e6e5475f08d919646104c4 100644 --- a/opam/tezos-embedded-protocol-006-PsCARTHA.opam +++ b/opam/tezos-embedded-protocol-006-PsCARTHA.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-protocol-006-PsCARTHA" "tezos-protocol-updater" diff --git a/opam/tezos-embedded-protocol-007-PsDELPH1.opam b/opam/tezos-embedded-protocol-007-PsDELPH1.opam index 39a251507b4b2ffec89b3944715bd978cf6964bd..9649f5f49181b0450299c9a0868d22ff72c6ef27 100644 --- a/opam/tezos-embedded-protocol-007-PsDELPH1.opam +++ b/opam/tezos-embedded-protocol-007-PsDELPH1.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-protocol-007-PsDELPH1" "tezos-protocol-updater" diff --git a/opam/tezos-embedded-protocol-008-PtEdo2Zk.opam b/opam/tezos-embedded-protocol-008-PtEdo2Zk.opam index 55e8aec35df7c6b5982bd2644553de5cd6cfbe40..3286555e9f6624e6c28a503af916122c8d8baa11 100644 --- a/opam/tezos-embedded-protocol-008-PtEdo2Zk.opam +++ b/opam/tezos-embedded-protocol-008-PtEdo2Zk.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-protocol-008-PtEdo2Zk" "tezos-protocol-updater" diff --git a/opam/tezos-embedded-protocol-008-PtEdoTez.opam b/opam/tezos-embedded-protocol-008-PtEdoTez.opam index 952e2da53e40e0f98e6042ff3184f81472a77648..b52966229ccc67310198a6af17c743f99b8e2a56 100644 --- a/opam/tezos-embedded-protocol-008-PtEdoTez.opam +++ b/opam/tezos-embedded-protocol-008-PtEdoTez.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-protocol-008-PtEdoTez" "tezos-protocol-updater" diff --git a/opam/tezos-embedded-protocol-009-PsFLoren.opam b/opam/tezos-embedded-protocol-009-PsFLoren.opam index 410c358a4c8d399eb83f8cf455ce7b2ee8cadcba..e301cea7901d1a32270b55b802a0e9220ea77e0b 100644 --- a/opam/tezos-embedded-protocol-009-PsFLoren.opam +++ b/opam/tezos-embedded-protocol-009-PsFLoren.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-protocol-009-PsFLoren" "tezos-protocol-updater" diff --git a/opam/tezos-embedded-protocol-010-PtGRANAD.opam b/opam/tezos-embedded-protocol-010-PtGRANAD.opam index 4885258e4aab82d1377a8db0ddeda77d1301472e..9b22a966ed9b2c3b5a3e91167d2a26836425e8f6 100644 --- a/opam/tezos-embedded-protocol-010-PtGRANAD.opam +++ b/opam/tezos-embedded-protocol-010-PtGRANAD.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-protocol-010-PtGRANAD" "tezos-protocol-updater" diff --git a/opam/tezos-embedded-protocol-011-PtHangz2.opam b/opam/tezos-embedded-protocol-011-PtHangz2.opam index d5999d7e01e44ef4f534de60e158864289eb134c..336ea56fc7580097c22d2fe390864fdb6560e18c 100644 --- a/opam/tezos-embedded-protocol-011-PtHangz2.opam +++ b/opam/tezos-embedded-protocol-011-PtHangz2.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-protocol-011-PtHangz2" "tezos-protocol-updater" diff --git a/opam/tezos-embedded-protocol-012-Psithaca.opam b/opam/tezos-embedded-protocol-012-Psithaca.opam index f11dde9815888a4a68fbe1255e0a1ffd80ae2af1..4ae94480ac1826fb137471f08767f4aa5f5e5584 100644 --- a/opam/tezos-embedded-protocol-012-Psithaca.opam +++ b/opam/tezos-embedded-protocol-012-Psithaca.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-protocol-012-Psithaca" "tezos-protocol-updater" diff --git a/opam/tezos-embedded-protocol-013-PtJakart.opam b/opam/tezos-embedded-protocol-013-PtJakart.opam index f8d307315c89b01640a5025c1e3aa2f697809ada..61709fceb161d3110632cd5ceb0fe9c56df32c7e 100644 --- a/opam/tezos-embedded-protocol-013-PtJakart.opam +++ b/opam/tezos-embedded-protocol-013-PtJakart.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-protocol-013-PtJakart" "tezos-protocol-updater" diff --git a/opam/tezos-embedded-protocol-014-PtKathma.opam b/opam/tezos-embedded-protocol-014-PtKathma.opam index 6190f85022af35d2f5e2eceda950a5b1e439ef16..ca918cdcae0588707ce90e7651fc6857a5f29f5e 100644 --- a/opam/tezos-embedded-protocol-014-PtKathma.opam +++ b/opam/tezos-embedded-protocol-014-PtKathma.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-protocol-014-PtKathma" "tezos-protocol-updater" diff --git a/opam/tezos-embedded-protocol-015-PtLimaPt.opam b/opam/tezos-embedded-protocol-015-PtLimaPt.opam index 18ab93075a01fcca7251b022640667bc9b9956dc..aa490b66300097d8a3d21cd861c2d6153e8a0bbf 100644 --- a/opam/tezos-embedded-protocol-015-PtLimaPt.opam +++ b/opam/tezos-embedded-protocol-015-PtLimaPt.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-protocol-015-PtLimaPt" "tezos-protocol-updater" diff --git a/opam/tezos-embedded-protocol-016-PtMumbai.opam b/opam/tezos-embedded-protocol-016-PtMumbai.opam index 5fc45431268116928602ed8a24a8329538ac4f48..5e06fc6792426a2cbb61c065d153f7e59cdfd8c7 100644 --- a/opam/tezos-embedded-protocol-016-PtMumbai.opam +++ b/opam/tezos-embedded-protocol-016-PtMumbai.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-protocol-016-PtMumbai" "tezos-protocol-updater" diff --git a/opam/tezos-embedded-protocol-alpha.opam b/opam/tezos-embedded-protocol-alpha.opam index 5660489100b2abaa292fe355407c78b4a1a403ec..ea63acdee11786001f8a0aeb0f76048490dfe2be 100644 --- a/opam/tezos-embedded-protocol-alpha.opam +++ b/opam/tezos-embedded-protocol-alpha.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-protocol-alpha" "tezos-protocol-updater" diff --git a/opam/tezos-embedded-protocol-demo-counter.opam b/opam/tezos-embedded-protocol-demo-counter.opam index bddeefde6683c641dbf50cfcea69c36014f8b3cc..5ea10f8cc27db89f036b8793193e70b83335b2db 100644 --- a/opam/tezos-embedded-protocol-demo-counter.opam +++ b/opam/tezos-embedded-protocol-demo-counter.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-protocol-demo-counter" "tezos-protocol-updater" diff --git a/opam/tezos-embedded-protocol-demo-noops.opam b/opam/tezos-embedded-protocol-demo-noops.opam index 67dcea23964675492b4585b1988305213b8ae79e..cb35b03d1882b4820425fe96c2bb7f4f49d400ad 100644 --- a/opam/tezos-embedded-protocol-demo-noops.opam +++ b/opam/tezos-embedded-protocol-demo-noops.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-protocol-demo-noops" "tezos-protocol-updater" diff --git a/opam/tezos-embedded-protocol-genesis.opam b/opam/tezos-embedded-protocol-genesis.opam index 872c3725af35e84515199ea4ae8f1f2e13ec7a63..e8c888f9e79334e3c72981b2dd52ddbb958221e6 100644 --- a/opam/tezos-embedded-protocol-genesis.opam +++ b/opam/tezos-embedded-protocol-genesis.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-protocol-genesis" "tezos-protocol-updater" diff --git a/opam/tezos-error-monad.opam b/opam/tezos-error-monad.opam index 3074dc58273e649e34031965b8d93a669880157d..4cb46c006c357abe9be08e664a4d4f5e1454b851 100644 --- a/opam/tezos-error-monad.opam +++ b/opam/tezos-error-monad.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-stdlib" "data-encoding" { >= "0.7.1" & < "1.0.0" } @@ -25,6 +25,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Tezos: error monad" diff --git a/opam/tezos-event-logging-test-helpers.opam b/opam/tezos-event-logging-test-helpers.opam index a7c013a54a95e4d2dfa28920e2039c700d488d1b..8f2dbd9648ccdf789a28ff11c49d1973265a26c0 100644 --- a/opam/tezos-event-logging-test-helpers.opam +++ b/opam/tezos-event-logging-test-helpers.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-stdlib" "tezos-lwt-result-stdlib" diff --git a/opam/tezos-event-logging.opam b/opam/tezos-event-logging.opam index 2e55d3f300e0a0c5e2eecb890ba8ceaa58b66dc6..2b922efa912ea689d8f7b3aaf9752df28624f6e9 100644 --- a/opam/tezos-event-logging.opam +++ b/opam/tezos-event-logging.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-stdlib" "data-encoding" { >= "0.7.1" & < "1.0.0" } diff --git a/opam/tezos-expect-helper.opam b/opam/tezos-expect-helper.opam index ec5502d38e2dc8259f5b1fcf8cfa6206abd7262e..76e241c433e181463d38f95aa2ee5248db2e0a43 100644 --- a/opam/tezos-expect-helper.opam +++ b/opam/tezos-expect-helper.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "ppx_expect" ] diff --git a/opam/tezos-gossipsub-test.opam b/opam/tezos-gossipsub-test.opam index 56740689cc28bb1e704613431fab4af7c8e630d4..189896199ec4ee9a4fc1849c906a58a6b693df61 100644 --- a/opam/tezos-gossipsub-test.opam +++ b/opam/tezos-gossipsub-test.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" {with-test} "tezos-gossipsub" {with-test} diff --git a/opam/tezos-gossipsub.opam b/opam/tezos-gossipsub.opam index 1df172ce587dd3e9c0243dfee4bca27d0a0061a7..bd013172c5a6659acd348e808244a08e40cd9416 100644 --- a/opam/tezos-gossipsub.opam +++ b/opam/tezos-gossipsub.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "ringo" { >= "1.0.0" } "aches" { >= "1.0.0" } diff --git a/opam/tezos-hacl.opam b/opam/tezos-hacl.opam index f4454f80058f09feedf3fcf6c2516494e1a05255..db64ade3cc5ee392dedacce1f8eb8731e80705ef 100644 --- a/opam/tezos-hacl.opam +++ b/opam/tezos-hacl.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "hacl-star" { >= "0.6.1" & < "0.7" } "hacl-star-raw" diff --git a/opam/tezos-injector-015-PtLimaPt.opam b/opam/tezos-injector-015-PtLimaPt.opam index 0831390f1b1c4b3b672802e5e400d9e0dbdcb6e0..cc1e1ef89fe05e43f36f8d7bcacb0c8c52fcd509 100644 --- a/opam/tezos-injector-015-PtLimaPt.opam +++ b/opam/tezos-injector-015-PtLimaPt.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "ppx_expect" "tezos-base" diff --git a/opam/tezos-layer2-store.opam b/opam/tezos-layer2-store.opam index 8fe7b62396fb55016353dd121cc59d0b4a7a24ef..3e71f74616c87991bd615a7bda77bb9d489b1b6d 100644 --- a/opam/tezos-layer2-store.opam +++ b/opam/tezos-layer2-store.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "index" { >= "1.6.0" & < "1.7.0" } "tezos-base" diff --git a/opam/tezos-layer2-utils-016-PtMumbai.opam b/opam/tezos-layer2-utils-016-PtMumbai.opam index 75976a5d6284dcd4a91b4f5d7eba15404175b03d..c894d1a0a08f9df0dbf1b4b74b93a8166c2de2da 100644 --- a/opam/tezos-layer2-utils-016-PtMumbai.opam +++ b/opam/tezos-layer2-utils-016-PtMumbai.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "ppx_expect" "tezos-base" diff --git a/opam/tezos-layer2-utils-alpha.opam b/opam/tezos-layer2-utils-alpha.opam index faaf4f43e59db5c5dabe62c6f2e26fdea7469715..df8992c91384d25155a29bcff5e0513fa084412c 100644 --- a/opam/tezos-layer2-utils-alpha.opam +++ b/opam/tezos-layer2-utils-alpha.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "ppx_expect" "tezos-base" diff --git a/opam/tezos-lazy-containers-tests.opam b/opam/tezos-lazy-containers-tests.opam index 693fcef3a9db923d1c1477c3e701a0c09e295336..010e92023966fd0878a8154f38eb4c390e1c68e1 100644 --- a/opam/tezos-lazy-containers-tests.opam +++ b/opam/tezos-lazy-containers-tests.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezt" { with-test & >= "3.0.0" } "tezos-lazy-containers" {with-test} @@ -21,6 +21,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Various tests for the lazy containers library" diff --git a/opam/tezos-lazy-containers.opam b/opam/tezos-lazy-containers.opam index 4f045f4a1452d818daa25e398231600e757fa644..6bcb6aba55b95780c55b85e35ee8dc3c3b784857 100644 --- a/opam/tezos-lazy-containers.opam +++ b/opam/tezos-lazy-containers.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-lwt-result-stdlib" "zarith" { >= "1.12" & < "1.13" } diff --git a/opam/tezos-lwt-result-stdlib.opam b/opam/tezos-lwt-result-stdlib.opam index 80c024b84a432e33709ce6a16e3feb596d364f31..c6fde853c13fa7842dcb411af976522e95719d58 100644 --- a/opam/tezos-lwt-result-stdlib.opam +++ b/opam/tezos-lwt-result-stdlib.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "lwt" { >= "5.6.0" } "seqes" { >= "0.2" } @@ -21,6 +21,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] { with-test & arch != "arm32" & arch != "x86_32" } - ["dune" "build" "@runtezt" "-p" name "-j" jobs] { with-test & arch != "arm32" & arch != "x86_32" } ] synopsis: "Tezos: error-aware stdlib replacement" diff --git a/opam/tezos-micheline-rewriting.opam b/opam/tezos-micheline-rewriting.opam index 2dd4236d3de422c4dc3aa322e6640dd4449a6c7a..dd4e1299ac17e22bbc46d65abe69f13c63959e07 100644 --- a/opam/tezos-micheline-rewriting.opam +++ b/opam/tezos-micheline-rewriting.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "zarith" { >= "1.12" & < "1.13" } "zarith_stubs_js" diff --git a/opam/tezos-micheline.opam b/opam/tezos-micheline.opam index 5b5358c94f1d2af9613e479c41b2c585dc90c8e8..ecfb682b4155609fff2d31e79a65d11154e21788 100644 --- a/opam/tezos-micheline.opam +++ b/opam/tezos-micheline.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "ppx_expect" "uutf" diff --git a/opam/tezos-mockup-commands.opam b/opam/tezos-mockup-commands.opam index 8ed94dfa9cf8b89d709e539406ce3a84fdb0cf04..b8c3b27477037fe0558bfe3f8be55f470dd3e299 100644 --- a/opam/tezos-mockup-commands.opam +++ b/opam/tezos-mockup-commands.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-clic" diff --git a/opam/tezos-mockup-proxy.opam b/opam/tezos-mockup-proxy.opam index d0984756cf08839d799f2488a1a3aad53f996966..02ce5d7962a9e232c44a24e50cbc12f4d5c7f44d 100644 --- a/opam/tezos-mockup-proxy.opam +++ b/opam/tezos-mockup-proxy.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-client-base" diff --git a/opam/tezos-mockup-registration.opam b/opam/tezos-mockup-registration.opam index 7cbb231880d2ef6f74c364ac7877288a0636722f..46cbd3ee4e545ad2379e1b16e0a67aa66f02dbcc 100644 --- a/opam/tezos-mockup-registration.opam +++ b/opam/tezos-mockup-registration.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-client-base" diff --git a/opam/tezos-mockup.opam b/opam/tezos-mockup.opam index 118cac5d99441619d8de4e18678565538117cd60..e387057bdb36982f222d16a5c8b8d7329da7d114 100644 --- a/opam/tezos-mockup.opam +++ b/opam/tezos-mockup.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-client-base" @@ -32,6 +32,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Tezos: library of auto-documented RPCs (mockup mode)" diff --git a/opam/tezos-openapi.opam b/opam/tezos-openapi.opam index 89cf19c62e9f4bf4a952752df2bb0bdb2ffbb170..785515dd03e9436b1d04525d4c86178289f20d72 100644 --- a/opam/tezos-openapi.opam +++ b/opam/tezos-openapi.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "ezjsonm" { >= "1.1.0" } "json-data-encoding" { >= "0.12" & < "0.13" } diff --git a/opam/tezos-p2p-services.opam b/opam/tezos-p2p-services.opam index b76c9ec83aea650b14b06125ead04cc75413a70d..767f403249b20153ec91a74412f88add755a85c8 100644 --- a/opam/tezos-p2p-services.opam +++ b/opam/tezos-p2p-services.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-rpc" diff --git a/opam/tezos-p2p.opam b/opam/tezos-p2p.opam index 9f690980213488f84bab45382058363448a67f09..4dff63492e83fe682fa27a69ba67e809f5686ee0 100644 --- a/opam/tezos-p2p.opam +++ b/opam/tezos-p2p.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "lwt-watcher" { = "0.2" } "lwt-canceler" { >= "0.3" & < "0.4" } @@ -31,6 +31,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Tezos: library for a pool of P2P connections" diff --git a/opam/tezos-protocol-000-Ps9mPmXa.opam b/opam/tezos-protocol-000-Ps9mPmXa.opam index 8aa26d264c07ce09f898e685566bd98007e6ce64..7d5b6daa9384caeb9dfc99b31e35bceb03ad49b7 100644 --- a/opam/tezos-protocol-000-Ps9mPmXa.opam +++ b/opam/tezos-protocol-000-Ps9mPmXa.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-protocol-environment" ] diff --git a/opam/tezos-protocol-001-PtCJ7pwo.opam b/opam/tezos-protocol-001-PtCJ7pwo.opam index 3b542c27f0619c322d253f6feeebac077679a477..cc69934e02de29b5593a513a2deb63137061bfb6 100644 --- a/opam/tezos-protocol-001-PtCJ7pwo.opam +++ b/opam/tezos-protocol-001-PtCJ7pwo.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-protocol-environment" ] diff --git a/opam/tezos-protocol-002-PsYLVpVv.opam b/opam/tezos-protocol-002-PsYLVpVv.opam index acff93255f3664ddc221b371c38cf5208c374426..2e0421393ebad3b78e287cd3fdb87dfbe632287d 100644 --- a/opam/tezos-protocol-002-PsYLVpVv.opam +++ b/opam/tezos-protocol-002-PsYLVpVv.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-protocol-environment" ] diff --git a/opam/tezos-protocol-003-PsddFKi3.opam b/opam/tezos-protocol-003-PsddFKi3.opam index 453ad0cdfe3fc84cf29542fad395452cda01e3b6..f4cdcd5f141a33709878e839883df04a8d7e0f43 100644 --- a/opam/tezos-protocol-003-PsddFKi3.opam +++ b/opam/tezos-protocol-003-PsddFKi3.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-protocol-environment" ] diff --git a/opam/tezos-protocol-004-Pt24m4xi.opam b/opam/tezos-protocol-004-Pt24m4xi.opam index e3b7e5ce7fa917de0769694bd4e56f2448efc106..a1802cc9a4eab619ff616f7f2babc803c1588ee0 100644 --- a/opam/tezos-protocol-004-Pt24m4xi.opam +++ b/opam/tezos-protocol-004-Pt24m4xi.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-protocol-environment" ] diff --git a/opam/tezos-protocol-005-PsBABY5H.opam b/opam/tezos-protocol-005-PsBABY5H.opam index e3b7e5ce7fa917de0769694bd4e56f2448efc106..a1802cc9a4eab619ff616f7f2babc803c1588ee0 100644 --- a/opam/tezos-protocol-005-PsBABY5H.opam +++ b/opam/tezos-protocol-005-PsBABY5H.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-protocol-environment" ] diff --git a/opam/tezos-protocol-005-PsBabyM1.opam b/opam/tezos-protocol-005-PsBabyM1.opam index e3b7e5ce7fa917de0769694bd4e56f2448efc106..a1802cc9a4eab619ff616f7f2babc803c1588ee0 100644 --- a/opam/tezos-protocol-005-PsBabyM1.opam +++ b/opam/tezos-protocol-005-PsBabyM1.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-protocol-environment" ] diff --git a/opam/tezos-protocol-006-PsCARTHA.opam b/opam/tezos-protocol-006-PsCARTHA.opam index e3b7e5ce7fa917de0769694bd4e56f2448efc106..a1802cc9a4eab619ff616f7f2babc803c1588ee0 100644 --- a/opam/tezos-protocol-006-PsCARTHA.opam +++ b/opam/tezos-protocol-006-PsCARTHA.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-protocol-environment" ] diff --git a/opam/tezos-protocol-007-PsDELPH1.opam b/opam/tezos-protocol-007-PsDELPH1.opam index e3b7e5ce7fa917de0769694bd4e56f2448efc106..a1802cc9a4eab619ff616f7f2babc803c1588ee0 100644 --- a/opam/tezos-protocol-007-PsDELPH1.opam +++ b/opam/tezos-protocol-007-PsDELPH1.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-protocol-environment" ] diff --git a/opam/tezos-protocol-008-PtEdo2Zk.opam b/opam/tezos-protocol-008-PtEdo2Zk.opam index e3b7e5ce7fa917de0769694bd4e56f2448efc106..a1802cc9a4eab619ff616f7f2babc803c1588ee0 100644 --- a/opam/tezos-protocol-008-PtEdo2Zk.opam +++ b/opam/tezos-protocol-008-PtEdo2Zk.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-protocol-environment" ] diff --git a/opam/tezos-protocol-008-PtEdoTez.opam b/opam/tezos-protocol-008-PtEdoTez.opam index e3b7e5ce7fa917de0769694bd4e56f2448efc106..a1802cc9a4eab619ff616f7f2babc803c1588ee0 100644 --- a/opam/tezos-protocol-008-PtEdoTez.opam +++ b/opam/tezos-protocol-008-PtEdoTez.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-protocol-environment" ] diff --git a/opam/tezos-protocol-009-PsFLoren.opam b/opam/tezos-protocol-009-PsFLoren.opam index e3b7e5ce7fa917de0769694bd4e56f2448efc106..a1802cc9a4eab619ff616f7f2babc803c1588ee0 100644 --- a/opam/tezos-protocol-009-PsFLoren.opam +++ b/opam/tezos-protocol-009-PsFLoren.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-protocol-environment" ] diff --git a/opam/tezos-protocol-010-PtGRANAD.opam b/opam/tezos-protocol-010-PtGRANAD.opam index e3b7e5ce7fa917de0769694bd4e56f2448efc106..a1802cc9a4eab619ff616f7f2babc803c1588ee0 100644 --- a/opam/tezos-protocol-010-PtGRANAD.opam +++ b/opam/tezos-protocol-010-PtGRANAD.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-protocol-environment" ] diff --git a/opam/tezos-protocol-011-PtHangz2.opam b/opam/tezos-protocol-011-PtHangz2.opam index 59f5b6b0b44a3111c893650c10085c1b73e3bd25..fed2981393a361ada54ed491b9e8afe20f295fac 100644 --- a/opam/tezos-protocol-011-PtHangz2.opam +++ b/opam/tezos-protocol-011-PtHangz2.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-protocol-environment" "tezos-base" diff --git a/opam/tezos-protocol-012-Psithaca.opam b/opam/tezos-protocol-012-Psithaca.opam index 59f5b6b0b44a3111c893650c10085c1b73e3bd25..fed2981393a361ada54ed491b9e8afe20f295fac 100644 --- a/opam/tezos-protocol-012-Psithaca.opam +++ b/opam/tezos-protocol-012-Psithaca.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-protocol-environment" "tezos-base" diff --git a/opam/tezos-protocol-013-PtJakart.opam b/opam/tezos-protocol-013-PtJakart.opam index 59f5b6b0b44a3111c893650c10085c1b73e3bd25..fed2981393a361ada54ed491b9e8afe20f295fac 100644 --- a/opam/tezos-protocol-013-PtJakart.opam +++ b/opam/tezos-protocol-013-PtJakart.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-protocol-environment" "tezos-base" diff --git a/opam/tezos-protocol-014-PtKathma.opam b/opam/tezos-protocol-014-PtKathma.opam index 59f5b6b0b44a3111c893650c10085c1b73e3bd25..fed2981393a361ada54ed491b9e8afe20f295fac 100644 --- a/opam/tezos-protocol-014-PtKathma.opam +++ b/opam/tezos-protocol-014-PtKathma.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-protocol-environment" "tezos-base" diff --git a/opam/tezos-protocol-015-PtLimaPt-tests.opam b/opam/tezos-protocol-015-PtLimaPt-tests.opam index 99da1bf191e7dbd42d207701c21e3966e5d181b0..1fe97715df1e7f88adf15b5bf4c0877c025b42c5 100644 --- a/opam/tezos-protocol-015-PtLimaPt-tests.opam +++ b/opam/tezos-protocol-015-PtLimaPt-tests.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "alcotest-lwt" { with-test & >= "1.5.0" } "tezos-base" {with-test} @@ -37,6 +37,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Tezos/Protocol: tests for economic-protocol definition" diff --git a/opam/tezos-protocol-015-PtLimaPt.opam b/opam/tezos-protocol-015-PtLimaPt.opam index 59f5b6b0b44a3111c893650c10085c1b73e3bd25..fed2981393a361ada54ed491b9e8afe20f295fac 100644 --- a/opam/tezos-protocol-015-PtLimaPt.opam +++ b/opam/tezos-protocol-015-PtLimaPt.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-protocol-environment" "tezos-base" diff --git a/opam/tezos-protocol-016-PtMumbai-tests.opam b/opam/tezos-protocol-016-PtMumbai-tests.opam index a93eb6870996bc1b2e3ca7815162ce54561ced96..55806a2163e041b662269001aa86de699a73d17d 100644 --- a/opam/tezos-protocol-016-PtMumbai-tests.opam +++ b/opam/tezos-protocol-016-PtMumbai-tests.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "alcotest-lwt" { with-test & >= "1.5.0" } "tezos-base" {with-test} @@ -41,6 +41,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Tezos/Protocol: tests for economic-protocol definition" diff --git a/opam/tezos-protocol-016-PtMumbai.opam b/opam/tezos-protocol-016-PtMumbai.opam index 59f5b6b0b44a3111c893650c10085c1b73e3bd25..fed2981393a361ada54ed491b9e8afe20f295fac 100644 --- a/opam/tezos-protocol-016-PtMumbai.opam +++ b/opam/tezos-protocol-016-PtMumbai.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-protocol-environment" "tezos-base" diff --git a/opam/tezos-protocol-alpha-tests.opam b/opam/tezos-protocol-alpha-tests.opam index 15d4df922b4246e59b03fca1ca304ba5430a89a2..2f811fcf4ffa9adfb5165a535a744c5b6d8e3685 100644 --- a/opam/tezos-protocol-alpha-tests.opam +++ b/opam/tezos-protocol-alpha-tests.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "alcotest-lwt" { with-test & >= "1.5.0" } "tezos-base" {with-test} @@ -41,6 +41,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Tezos/Protocol: tests for economic-protocol definition" diff --git a/opam/tezos-protocol-alpha.opam b/opam/tezos-protocol-alpha.opam index 59f5b6b0b44a3111c893650c10085c1b73e3bd25..fed2981393a361ada54ed491b9e8afe20f295fac 100644 --- a/opam/tezos-protocol-alpha.opam +++ b/opam/tezos-protocol-alpha.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-protocol-environment" "tezos-base" diff --git a/opam/tezos-protocol-demo-counter.opam b/opam/tezos-protocol-demo-counter.opam index 216bca84a51e2b12564693f48daa0d57c7d9e523..f837542559a9a0090287fde148581520f57b8a8a 100644 --- a/opam/tezos-protocol-demo-counter.opam +++ b/opam/tezos-protocol-demo-counter.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-protocol-environment" ] diff --git a/opam/tezos-protocol-demo-noops.opam b/opam/tezos-protocol-demo-noops.opam index 98f4cb83c0e6179d32710db8076dcbf59f31435b..f0f60425a4ecb9f7479c073ae2707debb86a196b 100644 --- a/opam/tezos-protocol-demo-noops.opam +++ b/opam/tezos-protocol-demo-noops.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-protocol-environment" ] diff --git a/opam/tezos-protocol-environment.opam b/opam/tezos-protocol-environment.opam index fa198d4c9d32828e005b703d9b9618d1219f18d4..4d9bc2d164495ff1b01017385eae4e7997ef46a7 100644 --- a/opam/tezos-protocol-environment.opam +++ b/opam/tezos-protocol-environment.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14.0" & < "4.15" } "tezos-stdlib" "tezos-crypto" diff --git a/opam/tezos-protocol-genesis.opam b/opam/tezos-protocol-genesis.opam index 471d077a4401ad8c892534feb6447a9dcfa06a53..ffeb0dc3d4bd034ed6e73d1f7f4223ce07a97319 100644 --- a/opam/tezos-protocol-genesis.opam +++ b/opam/tezos-protocol-genesis.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-protocol-environment" ] diff --git a/opam/tezos-protocol-plugin-007-PsDELPH1-registerer.opam b/opam/tezos-protocol-plugin-007-PsDELPH1-registerer.opam index bc9f4679581ea9cf1fee82daacb3953abf112b09..a8a1818a49de4c84ba54c8c3e13c28e282752392 100644 --- a/opam/tezos-protocol-plugin-007-PsDELPH1-registerer.opam +++ b/opam/tezos-protocol-plugin-007-PsDELPH1-registerer.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-embedded-protocol-007-PsDELPH1" diff --git a/opam/tezos-protocol-plugin-007-PsDELPH1.opam b/opam/tezos-protocol-plugin-007-PsDELPH1.opam index aa2d166adfb0fbe71a9cf544e132365687519413..e42b02c40d06fb42a775eaeef0e29e2ba97b10d9 100644 --- a/opam/tezos-protocol-plugin-007-PsDELPH1.opam +++ b/opam/tezos-protocol-plugin-007-PsDELPH1.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-protocol-007-PsDELPH1" diff --git a/opam/tezos-protocol-plugin-008-PtEdo2Zk-registerer.opam b/opam/tezos-protocol-plugin-008-PtEdo2Zk-registerer.opam index 7ee87971a122c8b9cfd26f7da6e3087fdf0b0b0a..c6281072f0f1102603fb084685f71d0e50dc971e 100644 --- a/opam/tezos-protocol-plugin-008-PtEdo2Zk-registerer.opam +++ b/opam/tezos-protocol-plugin-008-PtEdo2Zk-registerer.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-embedded-protocol-008-PtEdo2Zk" diff --git a/opam/tezos-protocol-plugin-008-PtEdo2Zk.opam b/opam/tezos-protocol-plugin-008-PtEdo2Zk.opam index 3f1f885c8cb61222af48ecda8974c4d70d15c04a..c5f6c76a4218903357c79ad40b2d407f656e57ae 100644 --- a/opam/tezos-protocol-plugin-008-PtEdo2Zk.opam +++ b/opam/tezos-protocol-plugin-008-PtEdo2Zk.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-protocol-008-PtEdo2Zk" diff --git a/opam/tezos-protocol-plugin-009-PsFLoren-registerer.opam b/opam/tezos-protocol-plugin-009-PsFLoren-registerer.opam index a1e464f3b37d305f763b0e5ad9d75d63fa698ff7..c6cc7e74214d7a636e3fffbb1446e3a40d261233 100644 --- a/opam/tezos-protocol-plugin-009-PsFLoren-registerer.opam +++ b/opam/tezos-protocol-plugin-009-PsFLoren-registerer.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-embedded-protocol-009-PsFLoren" diff --git a/opam/tezos-protocol-plugin-009-PsFLoren.opam b/opam/tezos-protocol-plugin-009-PsFLoren.opam index 2d961620d7ec97274afe9404fa64113cb952826e..eef459f5c97b67a793fa56f2d9a7eefdbb2e005b 100644 --- a/opam/tezos-protocol-plugin-009-PsFLoren.opam +++ b/opam/tezos-protocol-plugin-009-PsFLoren.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-protocol-009-PsFLoren" diff --git a/opam/tezos-protocol-plugin-010-PtGRANAD-registerer.opam b/opam/tezos-protocol-plugin-010-PtGRANAD-registerer.opam index e645a364d57730debe4f2c5f9a1bf59f19e81404..6fb983bb9af52df32c631a0d9ac01810d6a430dd 100644 --- a/opam/tezos-protocol-plugin-010-PtGRANAD-registerer.opam +++ b/opam/tezos-protocol-plugin-010-PtGRANAD-registerer.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-embedded-protocol-010-PtGRANAD" diff --git a/opam/tezos-protocol-plugin-010-PtGRANAD.opam b/opam/tezos-protocol-plugin-010-PtGRANAD.opam index f6aea474fa4bff087a0097ebee7f72f065738b97..1097c5092a03a620e934e5dd796b13d9ae830afe 100644 --- a/opam/tezos-protocol-plugin-010-PtGRANAD.opam +++ b/opam/tezos-protocol-plugin-010-PtGRANAD.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-protocol-010-PtGRANAD" diff --git a/opam/tezos-protocol-plugin-011-PtHangz2-registerer.opam b/opam/tezos-protocol-plugin-011-PtHangz2-registerer.opam index f85f268c8aa7c0f3838c640e2aac8f6712951c4b..448224d26e860941282d2186f78a35c464b2187a 100644 --- a/opam/tezos-protocol-plugin-011-PtHangz2-registerer.opam +++ b/opam/tezos-protocol-plugin-011-PtHangz2-registerer.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-embedded-protocol-011-PtHangz2" diff --git a/opam/tezos-protocol-plugin-011-PtHangz2.opam b/opam/tezos-protocol-plugin-011-PtHangz2.opam index 0f54b801f657a7d9df25ea677e6484bdc0859ac1..e07f452599e95fdeea594d3b9230138cc4447aee 100644 --- a/opam/tezos-protocol-plugin-011-PtHangz2.opam +++ b/opam/tezos-protocol-plugin-011-PtHangz2.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-protocol-011-PtHangz2" diff --git a/opam/tezos-protocol-plugin-012-Psithaca-registerer.opam b/opam/tezos-protocol-plugin-012-Psithaca-registerer.opam index 6ec7e8eeb7a6cdc841151137e590d95532c1097c..679ca77afd2422481792c4d01cf3619396511ac3 100644 --- a/opam/tezos-protocol-plugin-012-Psithaca-registerer.opam +++ b/opam/tezos-protocol-plugin-012-Psithaca-registerer.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-embedded-protocol-012-Psithaca" diff --git a/opam/tezos-protocol-plugin-012-Psithaca.opam b/opam/tezos-protocol-plugin-012-Psithaca.opam index 96633daf4e546ad09b0063bdbe89c5dc012dd1b1..626381cc477fd74ed5ebd6775f7eefb1c1fdaac1 100644 --- a/opam/tezos-protocol-plugin-012-Psithaca.opam +++ b/opam/tezos-protocol-plugin-012-Psithaca.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-protocol-012-Psithaca" diff --git a/opam/tezos-protocol-plugin-013-PtJakart-registerer.opam b/opam/tezos-protocol-plugin-013-PtJakart-registerer.opam index 3f540cad2b628afba1c1827fa5eb9a0486ca261e..f4e3d99d18862c8529f5434e1242081c7e6c1fbd 100644 --- a/opam/tezos-protocol-plugin-013-PtJakart-registerer.opam +++ b/opam/tezos-protocol-plugin-013-PtJakart-registerer.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-embedded-protocol-013-PtJakart" diff --git a/opam/tezos-protocol-plugin-013-PtJakart.opam b/opam/tezos-protocol-plugin-013-PtJakart.opam index 46b01004894502311638e2429b602bf7ac3ba598..a4eb310bd67ff2fbd415d6de20342a98ea3039aa 100644 --- a/opam/tezos-protocol-plugin-013-PtJakart.opam +++ b/opam/tezos-protocol-plugin-013-PtJakart.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-protocol-013-PtJakart" diff --git a/opam/tezos-protocol-plugin-014-PtKathma-registerer.opam b/opam/tezos-protocol-plugin-014-PtKathma-registerer.opam index 831c43727c934c3d0cafceb4ea8b7b7ad8005d3b..f315a485720ec3220769dcf83da5d370cc1177f2 100644 --- a/opam/tezos-protocol-plugin-014-PtKathma-registerer.opam +++ b/opam/tezos-protocol-plugin-014-PtKathma-registerer.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-embedded-protocol-014-PtKathma" diff --git a/opam/tezos-protocol-plugin-014-PtKathma.opam b/opam/tezos-protocol-plugin-014-PtKathma.opam index 8b9422f98388cccba288359486feee738c10f990..a67f73acfe17c30e53b9e202d30c28b5364e4c2c 100644 --- a/opam/tezos-protocol-plugin-014-PtKathma.opam +++ b/opam/tezos-protocol-plugin-014-PtKathma.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-protocol-014-PtKathma" diff --git a/opam/tezos-protocol-plugin-015-PtLimaPt-registerer.opam b/opam/tezos-protocol-plugin-015-PtLimaPt-registerer.opam index 69d259bf47d5edf4477768b4bd8bbb7905997867..90250b6eaecf0bd8cdf8f1ed0e41d31aaac5a65f 100644 --- a/opam/tezos-protocol-plugin-015-PtLimaPt-registerer.opam +++ b/opam/tezos-protocol-plugin-015-PtLimaPt-registerer.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-embedded-protocol-015-PtLimaPt" diff --git a/opam/tezos-protocol-plugin-015-PtLimaPt-tests.opam b/opam/tezos-protocol-plugin-015-PtLimaPt-tests.opam index b9269c355b61a16eae3423290c769330d3032671..6490c485283c798e9b9cf213587e051b07125417 100644 --- a/opam/tezos-protocol-plugin-015-PtLimaPt-tests.opam +++ b/opam/tezos-protocol-plugin-015-PtLimaPt-tests.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezt" { with-test & >= "3.0.0" } "tezos-base" {with-test} @@ -26,6 +26,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Tezos/Protocol: protocol plugin tests" diff --git a/opam/tezos-protocol-plugin-015-PtLimaPt.opam b/opam/tezos-protocol-plugin-015-PtLimaPt.opam index 852774bf464cc990b7cee409a901bc18fa5401d3..9f2cac3fdd57509d36da1529baa60eea52311557 100644 --- a/opam/tezos-protocol-plugin-015-PtLimaPt.opam +++ b/opam/tezos-protocol-plugin-015-PtLimaPt.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-protocol-015-PtLimaPt" diff --git a/opam/tezos-protocol-plugin-016-PtMumbai-registerer.opam b/opam/tezos-protocol-plugin-016-PtMumbai-registerer.opam index f283e4ac00cb73cf45a98976f7754ecc1a681803..952e831e5fded050c5cb562d0e083059a67e0511 100644 --- a/opam/tezos-protocol-plugin-016-PtMumbai-registerer.opam +++ b/opam/tezos-protocol-plugin-016-PtMumbai-registerer.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-embedded-protocol-016-PtMumbai" diff --git a/opam/tezos-protocol-plugin-016-PtMumbai-tests.opam b/opam/tezos-protocol-plugin-016-PtMumbai-tests.opam index ca78afa10ffcb5e9d2a988924f445f90e3a5774b..90da140bc9e0ad9a35b6cd636d059c8934a2ebe9 100644 --- a/opam/tezos-protocol-plugin-016-PtMumbai-tests.opam +++ b/opam/tezos-protocol-plugin-016-PtMumbai-tests.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezt" { with-test & >= "3.0.0" } "tezos-base" {with-test} @@ -26,6 +26,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Tezos/Protocol: protocol plugin tests" diff --git a/opam/tezos-protocol-plugin-016-PtMumbai.opam b/opam/tezos-protocol-plugin-016-PtMumbai.opam index f7f614dad98c6290708f2d58b447f135ddd28076..3f83288260d830f4407491f661d034c6d03d4f97 100644 --- a/opam/tezos-protocol-plugin-016-PtMumbai.opam +++ b/opam/tezos-protocol-plugin-016-PtMumbai.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-protocol-016-PtMumbai" diff --git a/opam/tezos-protocol-plugin-alpha-registerer.opam b/opam/tezos-protocol-plugin-alpha-registerer.opam index ec51b5b1d9c6ac52f7d2d8a684c4230a9bac97dd..eec7e26c93a73b605ab2717c8e1586f1d22d4db0 100644 --- a/opam/tezos-protocol-plugin-alpha-registerer.opam +++ b/opam/tezos-protocol-plugin-alpha-registerer.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-embedded-protocol-alpha" diff --git a/opam/tezos-protocol-plugin-alpha-tests.opam b/opam/tezos-protocol-plugin-alpha-tests.opam index cfc304235fc15fee34188b2ab759d80ac535ba65..fc8e8e02ae3b8d29b033bfb5757fecf458ab4c86 100644 --- a/opam/tezos-protocol-plugin-alpha-tests.opam +++ b/opam/tezos-protocol-plugin-alpha-tests.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezt" { with-test & >= "3.0.0" } "tezos-base" {with-test} @@ -26,6 +26,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Tezos/Protocol: protocol plugin tests" diff --git a/opam/tezos-protocol-plugin-alpha.opam b/opam/tezos-protocol-plugin-alpha.opam index 750701e9cc2a1544df8fb5a6ea984e22fe55b76d..40cffbe0680f7bb7e342c2c2baf3b73375e9b183 100644 --- a/opam/tezos-protocol-plugin-alpha.opam +++ b/opam/tezos-protocol-plugin-alpha.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-protocol-alpha" diff --git a/opam/tezos-protocol-updater.opam b/opam/tezos-protocol-updater.opam index 17c8c44185627679775fcc5b1f5f627c1016da0d..320502733aba7992b11385141cad34e528731351 100644 --- a/opam/tezos-protocol-updater.opam +++ b/opam/tezos-protocol-updater.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-stdlib-unix" diff --git a/opam/tezos-proxy-server-config.opam b/opam/tezos-proxy-server-config.opam index 487d0ca6c5ab491fdf613be0edde5970c06b6636..d37f5347157d99c5d9335ad6109a9ea0957c0367 100644 --- a/opam/tezos-proxy-server-config.opam +++ b/opam/tezos-proxy-server-config.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-stdlib-unix" diff --git a/opam/tezos-proxy.opam b/opam/tezos-proxy.opam index 4579c0e5dc6e5c69f693fe0cd0edb47f2077deb9..c7db1cb3c5d5fe6e1b34c14472acf0576aed08d0 100644 --- a/opam/tezos-proxy.opam +++ b/opam/tezos-proxy.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "aches" { >= "1.0.0" } "aches-lwt" { >= "1.0.0" } diff --git a/opam/tezos-requester.opam b/opam/tezos-requester.opam index 99ffda04a0bac8b50f8edac97a6d4b57dba1069b..6dd8facea3ad4d2fe905fe78694961e572676c10 100644 --- a/opam/tezos-requester.opam +++ b/opam/tezos-requester.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-stdlib-unix" diff --git a/opam/tezos-rpc-http-client-unix.opam b/opam/tezos-rpc-http-client-unix.opam index f4999936af6169ccba40f38cf3fdd51e7bcad2a7..ffbd3009fabdc1b68b00783dea0e5b6edd900e07 100644 --- a/opam/tezos-rpc-http-client-unix.opam +++ b/opam/tezos-rpc-http-client-unix.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-stdlib-unix" "tezos-base" diff --git a/opam/tezos-rpc-http-client.opam b/opam/tezos-rpc-http-client.opam index cae42a15bb39d5ac5f22061ce9ef97dd9e83fbb3..01a706d1fcee940bfd26c62577b6acc817181127 100644 --- a/opam/tezos-rpc-http-client.opam +++ b/opam/tezos-rpc-http-client.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "resto-cohttp-client" { >= "1.0" } diff --git a/opam/tezos-rpc-http-server.opam b/opam/tezos-rpc-http-server.opam index ae270bee3757c06fe72dc538e31d6f57d4459b04..19ae888c91be6116e353f946439721d0522c9fb1 100644 --- a/opam/tezos-rpc-http-server.opam +++ b/opam/tezos-rpc-http-server.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-stdlib-unix" diff --git a/opam/tezos-rpc-http.opam b/opam/tezos-rpc-http.opam index fcf4611d0c495be72b464843ecb580bdc0321fe1..972a6f771c5935e4f6f51298b8ed783946d35427 100644 --- a/opam/tezos-rpc-http.opam +++ b/opam/tezos-rpc-http.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-rpc" diff --git a/opam/tezos-rpc.opam b/opam/tezos-rpc.opam index 512baf702eca8b959c81282c716ce91c688d9d4f..178ed68de8eca275ec2c0aedb158e9c554887af0 100644 --- a/opam/tezos-rpc.opam +++ b/opam/tezos-rpc.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "data-encoding" { >= "0.7.1" & < "1.0.0" } "tezos-error-monad" diff --git a/opam/tezos-sapling.opam b/opam/tezos-sapling.opam index 4fc76db484572cfe0bae8eaf78ba7432f773228e..71c5ec34ddf1eb9a7d49e507dab70aa175f70c22 100644 --- a/opam/tezos-sapling.opam +++ b/opam/tezos-sapling.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "conf-rust" "integers" diff --git a/opam/tezos-scoru-wasm-benchmark.opam b/opam/tezos-scoru-wasm-benchmark.opam index bf38c859dde2595cc8946e4a09504a727095e55d..e848192c8ac9e3b146698470c130b83704303d0f 100644 --- a/opam/tezos-scoru-wasm-benchmark.opam +++ b/opam/tezos-scoru-wasm-benchmark.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "ppx_deriving" "tezos-base" diff --git a/opam/tezos-scoru-wasm-durable-snapshot.opam b/opam/tezos-scoru-wasm-durable-snapshot.opam index b51cafdfcff4beb6acbf42a9a8c3c80e1708c8e2..7edd6e3f94195becfd5f7736b29fce0ad7a61b27 100644 --- a/opam/tezos-scoru-wasm-durable-snapshot.opam +++ b/opam/tezos-scoru-wasm-durable-snapshot.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "ppx_import" "ppx_deriving" diff --git a/opam/tezos-scoru-wasm-fast-test.opam b/opam/tezos-scoru-wasm-fast-test.opam index aa8ac09274038f53ffe8d5e1fbbdf8364e7b49d6..51233c97f9b37368414c3828dd6f9ba5f7bce93c 100644 --- a/opam/tezos-scoru-wasm-fast-test.opam +++ b/opam/tezos-scoru-wasm-fast-test.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "ppx_import" {with-test} "ppx_deriving" {with-test} diff --git a/opam/tezos-scoru-wasm-fast.opam b/opam/tezos-scoru-wasm-fast.opam index d626ee3b7b439aebacb0c6bad8d3fe87dbf4eae9..956aae087b31a4bc0f9dd5b33d493f3a4b8a9573 100644 --- a/opam/tezos-scoru-wasm-fast.opam +++ b/opam/tezos-scoru-wasm-fast.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-tree-encoding" diff --git a/opam/tezos-scoru-wasm-helpers.opam b/opam/tezos-scoru-wasm-helpers.opam index f5dc13238b589dda1db96a9f148facbdf8a3f6fa..b63363b9877ae843305c0bb806dc1320501f9d21 100644 --- a/opam/tezos-scoru-wasm-helpers.opam +++ b/opam/tezos-scoru-wasm-helpers.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "ppx_import" "ppx_deriving" diff --git a/opam/tezos-scoru-wasm-test-helpers.opam b/opam/tezos-scoru-wasm-test-helpers.opam index 479a75ec688bb204f04defca06043b4594da24e3..6b015549728592c24bd0f991eb24c74b610f33d7 100644 --- a/opam/tezos-scoru-wasm-test-helpers.opam +++ b/opam/tezos-scoru-wasm-test-helpers.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "ppx_import" "ppx_deriving" diff --git a/opam/tezos-scoru-wasm-test.opam b/opam/tezos-scoru-wasm-test.opam index 2e304f4099c63f1ff1e5423578a2e71dcd5b8e55..b53451ad8870e161a3a161dee6296c8ed5823df8 100644 --- a/opam/tezos-scoru-wasm-test.opam +++ b/opam/tezos-scoru-wasm-test.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "ppx_import" {with-test} "ppx_deriving" {with-test} diff --git a/opam/tezos-scoru-wasm.opam b/opam/tezos-scoru-wasm.opam index de5b5b93640c46e5b1832d2aa0c0ee272bb3e337..21e2c4c2eb2cf80528086597a638fc059655fbd1 100644 --- a/opam/tezos-scoru-wasm.opam +++ b/opam/tezos-scoru-wasm.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-tree-encoding" diff --git a/opam/tezos-shell-benchmarks.opam b/opam/tezos-shell-benchmarks.opam index 6d258ca0076d281759f8e98b0f41ae9fa6fe77b8..fad94acafac7415badfd2cf9da0581f61991215d 100644 --- a/opam/tezos-shell-benchmarks.opam +++ b/opam/tezos-shell-benchmarks.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-stdlib" "tezos-base" diff --git a/opam/tezos-shell-context-test.opam b/opam/tezos-shell-context-test.opam index 994827cd274386bd6332abc85cf2ab2c3ab21e86..c51bcb53bb76a13900a3cb01253fb6b5606a252d 100644 --- a/opam/tezos-shell-context-test.opam +++ b/opam/tezos-shell-context-test.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-shell-context" {with-test} "alcotest-lwt" { with-test & >= "1.5.0" } diff --git a/opam/tezos-shell-context.opam b/opam/tezos-shell-context.opam index ade5012e5110cdab2cc0c61732a42fb3f7fcf46a..5bc2421645999e0753fe01dd3971f45c05c9c1f0 100644 --- a/opam/tezos-shell-context.opam +++ b/opam/tezos-shell-context.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-protocol-environment" diff --git a/opam/tezos-shell-services-test-helpers.opam b/opam/tezos-shell-services-test-helpers.opam index b9fdfd33ce228970b3e27f7912689f3091ecba48..7404e3ff5e911993d365d823da346f3f38a1b40c 100644 --- a/opam/tezos-shell-services-test-helpers.opam +++ b/opam/tezos-shell-services-test-helpers.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-shell-services" diff --git a/opam/tezos-shell-services.opam b/opam/tezos-shell-services.opam index 89861404495d6cd7dd101af7308295981c1fe83b..fb6be7b8138677237a0d06cfa79eb5af5cb94b19 100644 --- a/opam/tezos-shell-services.opam +++ b/opam/tezos-shell-services.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-rpc" diff --git a/opam/tezos-shell.opam b/opam/tezos-shell.opam index cd6a912a83c8fd83c995c1d2a086f4462b742bdd..3f26fe10d671ed2a3a4d27d0ad3b7cb1bd39f279 100644 --- a/opam/tezos-shell.opam +++ b/opam/tezos-shell.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "ppx_expect" "lwt-watcher" { = "0.2" } @@ -42,6 +42,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Tezos: core of `octez-node` (gossip, validation scheduling, mempool, ...)" diff --git a/opam/tezos-signer-backends.opam b/opam/tezos-signer-backends.opam index f2c926df0900338eabce7e9fa21576f61f1e40ba..d3d90ec2e9c50b0e02ed51f1ff7ea7927ca1f2aa 100644 --- a/opam/tezos-signer-backends.opam +++ b/opam/tezos-signer-backends.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-stdlib" @@ -38,6 +38,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Tezos: remote-signature backends for `tezos-client`" diff --git a/opam/tezos-signer-services.opam b/opam/tezos-signer-services.opam index ff688997b9d413cc74a130b8f846367da59cc86a..dae9712319198cb52bc5722cabb3848328a14b9c 100644 --- a/opam/tezos-signer-services.opam +++ b/opam/tezos-signer-services.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-rpc" diff --git a/opam/tezos-smart-rollup-016-PtMumbai.opam b/opam/tezos-smart-rollup-016-PtMumbai.opam index 18eb0ec2b809523ac439cc0ea5ea677eeaba30a2..193a628a5d871afc3b4d615a21cde7f5cc0b997d 100644 --- a/opam/tezos-smart-rollup-016-PtMumbai.opam +++ b/opam/tezos-smart-rollup-016-PtMumbai.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "ppx_expect" "tezos-base" diff --git a/opam/tezos-smart-rollup-alpha.opam b/opam/tezos-smart-rollup-alpha.opam index 46d3f7f80f1a24257ee64aabb97bdbc7b47231c7..0e068e36ea58643fadb833c2790f574be8df39df 100644 --- a/opam/tezos-smart-rollup-alpha.opam +++ b/opam/tezos-smart-rollup-alpha.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "ppx_expect" "tezos-base" diff --git a/opam/tezos-smart-rollup-layer2-016-PtMumbai.opam b/opam/tezos-smart-rollup-layer2-016-PtMumbai.opam index 18bc6cb044123c3d829be40d68b45419b3c926f1..edbbc39a2f400a6e74da43be63b0eb838fe1d84c 100644 --- a/opam/tezos-smart-rollup-layer2-016-PtMumbai.opam +++ b/opam/tezos-smart-rollup-layer2-016-PtMumbai.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "ppx_expect" "tezos-base" diff --git a/opam/tezos-smart-rollup-layer2-alpha.opam b/opam/tezos-smart-rollup-layer2-alpha.opam index 5e0b7af27672eb10714f495bd7ac9896a4ff0b3f..018281bff05191ff59332381aeacc15d12db02d3 100644 --- a/opam/tezos-smart-rollup-layer2-alpha.opam +++ b/opam/tezos-smart-rollup-layer2-alpha.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "ppx_expect" "tezos-base" diff --git a/opam/tezos-stdlib-unix.opam b/opam/tezos-stdlib-unix.opam index 4e25077d3fe9dd43c95c358a392a68a08db1857c..561d94f754e8ccf205b0c2a40d5be13538d4b877 100644 --- a/opam/tezos-stdlib-unix.opam +++ b/opam/tezos-stdlib-unix.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "base-unix" "tezos-error-monad" @@ -34,6 +34,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Tezos: yet-another local-extension of the OCaml standard library (unix-specific fragment)" diff --git a/opam/tezos-stdlib.opam b/opam/tezos-stdlib.opam index f3bd79d8188e3df4f6dfd34a250dc9f94c5d9ce3..c997c3b78c3297fc7120115778f1c39d388cc31d 100644 --- a/opam/tezos-stdlib.opam +++ b/opam/tezos-stdlib.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "ppx_expect" "hex" { >= "1.3.0" } @@ -27,6 +27,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Tezos: yet-another local-extension of the OCaml standard library" diff --git a/opam/tezos-store.opam b/opam/tezos-store.opam index 1c96f1f7659521bb8c43abffd7f4d21bfbd910b1..124ade4fa45da39af3f3c106f891e1876b45fa50 100644 --- a/opam/tezos-store.opam +++ b/opam/tezos-store.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-stdlib-unix" "tezos-base" diff --git a/opam/tezos-test-helpers-extra.opam b/opam/tezos-test-helpers-extra.opam index db9da3c8a400867ae80ae1dfae2984053f81d1bf..0b62d319d59e2423a12be21c900bd3aeb354e9a4 100644 --- a/opam/tezos-test-helpers-extra.opam +++ b/opam/tezos-test-helpers-extra.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-crypto" diff --git a/opam/tezos-test-helpers.opam b/opam/tezos-test-helpers.opam index 4b5b3d0e31f7205458bb07faac6c823a59fb717a..9565de08bb82df8d7e4fe19094e51e26289dce16 100644 --- a/opam/tezos-test-helpers.opam +++ b/opam/tezos-test-helpers.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "uri" { >= "3.1.0" } "fmt" { >= "0.8.7" } diff --git a/opam/tezos-tooling.opam b/opam/tezos-tooling.opam index 5a9ed3cf4a628d535cb64c3e80b4bd1ee69c7d84..45a0459ddfbe300d9c31ac3c714e32747651b1c2 100644 --- a/opam/tezos-tooling.opam +++ b/opam/tezos-tooling.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "bisect_ppx" { >= "2.7.0" } "ocamlformat" { = "0.24.1" } diff --git a/opam/tezos-tps-evaluation.opam b/opam/tezos-tps-evaluation.opam index 444a9ad1d215e7c6a81364b9dde1009b149b2d75..8027d854c1ee55075062c5a51dae61c4bf5934d6 100644 --- a/opam/tezos-tps-evaluation.opam +++ b/opam/tezos-tps-evaluation.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "caqti" diff --git a/opam/tezos-tree-encoding-test.opam b/opam/tezos-tree-encoding-test.opam index 172a0f114278f3155b3391a4dda0fb0f88139ac7..a30f420e2a5e336fc6ed1f95b048eecaaa27c55f 100644 --- a/opam/tezos-tree-encoding-test.opam +++ b/opam/tezos-tree-encoding-test.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" {with-test} "tezos-tree-encoding" {with-test} diff --git a/opam/tezos-tree-encoding.opam b/opam/tezos-tree-encoding.opam index 28ae9f53749452923a1da92f87749847f36958f8..e0e6e097d5329adccc754e43f06f6ad53209237e 100644 --- a/opam/tezos-tree-encoding.opam +++ b/opam/tezos-tree-encoding.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-lazy-containers" diff --git a/opam/tezos-tx-rollup-015-PtLimaPt.opam b/opam/tezos-tx-rollup-015-PtLimaPt.opam index a00c3f89d953f0569f3160a77d85a1bece7626a9..f81fb6888b616ff3f7ccaf3fc1a81b74b9e42cab 100644 --- a/opam/tezos-tx-rollup-015-PtLimaPt.opam +++ b/opam/tezos-tx-rollup-015-PtLimaPt.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "ppx_expect" "index" { >= "1.6.0" & < "1.7.0" } diff --git a/opam/tezos-validation.opam b/opam/tezos-validation.opam index 201bcc3e50ba76aa58b4aac01c4e1e2ab46b3d13..a9fcbc90648b0486838b5d5cdad4fe367975cbf1 100644 --- a/opam/tezos-validation.opam +++ b/opam/tezos-validation.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-crypto" diff --git a/opam/tezos-version.opam b/opam/tezos-version.opam index bfba3844cb01d481943ae8a0d7dae29061e21bfd..c361549ba560029fbb3f1bc0c0f7a9dd46946c03 100644 --- a/opam/tezos-version.opam +++ b/opam/tezos-version.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "ppx_deriving" "tezos-base" diff --git a/opam/tezos-wasmer.opam b/opam/tezos-wasmer.opam index 86cbcdf84e9aed0be6cb1565602bde4a39645e30..3c5e012c0cbe1f4bdea00e7694ab2a70b21c0770 100644 --- a/opam/tezos-wasmer.opam +++ b/opam/tezos-wasmer.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "ppx_deriving" "ctypes" { >= "0.18.0" } diff --git a/opam/tezos-webassembly-interpreter-extra.opam b/opam/tezos-webassembly-interpreter-extra.opam index 0f5bbc01b0a6ee0ebb8946893ff2f2265c5c789a..e09ae9fcca72cfff2bcc8e9d343e45a8160d13c3 100644 --- a/opam/tezos-webassembly-interpreter-extra.opam +++ b/opam/tezos-webassembly-interpreter-extra.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "Apache-2.0" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-webassembly-interpreter" "lwt" { >= "5.6.0" } diff --git a/opam/tezos-webassembly-interpreter.opam b/opam/tezos-webassembly-interpreter.opam index 6eab9ec459f8387b389abffa7388fee2e39a31c6..436b096216f4513490fe1161f336073f9c594037 100644 --- a/opam/tezos-webassembly-interpreter.opam +++ b/opam/tezos-webassembly-interpreter.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "Apache-2.0" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "ppx_deriving" "tezos-lwt-result-stdlib" diff --git a/opam/tezos-workers.opam b/opam/tezos-workers.opam index a90fc3e0be03299a702e2243b1b42412cb8ce09e..38013772dcd6b7130b917bd5450058f8885b6c0a 100644 --- a/opam/tezos-workers.opam +++ b/opam/tezos-workers.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezos-base" "tezos-stdlib-unix" @@ -22,6 +22,5 @@ build: [ ["rm" "-r" "vendors"] ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} - ["dune" "build" "@runtezt" "-p" name "-j" jobs] {with-test} ] synopsis: "Tezos: worker library" diff --git a/opam/tezt-performance-regression.opam b/opam/tezt-performance-regression.opam index 4fa48ea18b46b8733b2155e40d79e83db0d44c18..35860a9a9b6afefa351b2972c04aa31a5412d80c 100644 --- a/opam/tezt-performance-regression.opam +++ b/opam/tezt-performance-regression.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezt" { >= "3.0.0" } "uri" { >= "3.1.0" } diff --git a/opam/tezt-self-tests.opam b/opam/tezt-self-tests.opam index 9ebbafa5786337afd58ce16a5d35cc2e1d7c50d0..9630e366e9d8103f0252e990575dc04293b2aa76 100644 --- a/opam/tezt-self-tests.opam +++ b/opam/tezt-self-tests.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezt" { >= "3.0.0" } "tezt-tezos" diff --git a/opam/tezt-tezos.opam b/opam/tezt-tezos.opam index 25bdaf810f119bfa007c2bc1b8c0536aa5d4a3dd..021a1d2735101bcb80e087cdd3c392a26db133b5 100644 --- a/opam/tezt-tezos.opam +++ b/opam/tezt-tezos.opam @@ -8,7 +8,7 @@ bug-reports: "https://gitlab.com/tezos/tezos/issues" dev-repo: "git+https://gitlab.com/tezos/tezos.git" license: "MIT" depends: [ - "dune" { >= "3.0" } + "dune" { >= "3.7" } "ocaml" { >= "4.14" } "tezt" { >= "3.0.0" } "tezt-performance-regression" diff --git a/src/lib_base/test/dune b/src/lib_base/test/dune index f70a1b5aeef2a7f1fa04ab733de1c45c8a17641a..bf3c184e6bdb6d92d3cb660bf6e297307f8588f0 100644 --- a/src/lib_base/test/dune +++ b/src/lib_base/test/dune @@ -26,38 +26,32 @@ -open Octez_alcotezt) (modules test_bounded test_time test_protocol test_p2p_addr test_sized)) -(executable +(test + (enabled_if (not %{env:CI=true})) (name main) + (package tezos-base) (modes native) (libraries src_lib_base_test_tezt_lib tezt) - (modules main)) - -(rule - (alias runtezt) - (package tezos-base) - (deps points.ok points.ko) - (action (run %{dep:./main.exe}))) + (modules main) + (deps points.ok points.ko)) (rule (targets main.ml) (action (with-stdout-to %{targets} (echo "let () = Tezt.Test.run ()")))) -(executable +(test + (enabled_if (not %{env:CI=true})) (name main_js) + (package tezos-base) (modes js) (libraries src_lib_base_test_tezt_lib tezt.js) (js_of_ocaml) - (modules main_js)) - -(rule - (alias runtezt_js) - (package tezos-base) - (deps points.ok points.ko) - (action (run node %{dep:./main_js.bc.js}))) + (modules main_js) + (deps points.ok points.ko)) (rule (targets main_js.ml) diff --git a/src/lib_base/unix/test/dune b/src/lib_base/unix/test/dune index b5642ded316669787d63b6f3265f609be9e5e770..23bffebc0be6ae18d3958e32dc0031861dea8abf 100644 --- a/src/lib_base/unix/test/dune +++ b/src/lib_base/unix/test/dune @@ -1,8 +1,9 @@ ; This file was automatically generated, do not edit. ; Edit file manifest/main.ml instead. -(executable +(test (name test_unix_error) + (package tezos-base) (libraries tezos-base tezos-base.unix @@ -16,8 +17,3 @@ -open Tezos_base_unix -open Tezos_error_monad -open Tezos_test_helpers)) - -(rule - (alias runtest) - (package tezos-base) - (action (run %{dep:./test_unix_error.exe}))) diff --git a/src/lib_benchmark/dune b/src/lib_benchmark/dune index 396165dd1bd8ab6f13a2337f48105a7c9c28cb2f..47a58dc7446cb6bcc207ad6c1dea94c6d612bf5c 100644 --- a/src/lib_benchmark/dune +++ b/src/lib_benchmark/dune @@ -19,7 +19,7 @@ pyml ocamlgraph ocaml-migrate-parsetree) - (inline_tests (flags -verbose) (modes native)) + (inline_tests (flags -verbose) (modes best)) (preprocess (pps ppx_expect)) (flags (:standard) diff --git a/src/lib_benchmark/lib_micheline_rewriting/test/dune b/src/lib_benchmark/lib_micheline_rewriting/test/dune index 560949a46a41b7ade47e561a987fe3e38e747b1d..16d8aa160a76b07987731536af066c720b5ece27 100644 --- a/src/lib_benchmark/lib_micheline_rewriting/test/dune +++ b/src/lib_benchmark/lib_micheline_rewriting/test/dune @@ -1,8 +1,9 @@ ; This file was automatically generated, do not edit. ; Edit file manifest/main.ml instead. -(executable +(test (name test_rewriting) + (package tezos-micheline-rewriting) (libraries tezos-micheline tezos-micheline-rewriting @@ -16,8 +17,3 @@ (flags (:standard) -open Tezos_micheline)) - -(rule - (alias runtest) - (package tezos-micheline-rewriting) - (action (run %{dep:./test_rewriting.exe}))) diff --git a/src/lib_benchmark/test/dune b/src/lib_benchmark/test/dune index 8ce01ffb4c9295240c7770fa37849afeb88200ec..6e2c87e9e83d73f0c9b26c9a4422877205ae711b 100644 --- a/src/lib_benchmark/test/dune +++ b/src/lib_benchmark/test/dune @@ -29,18 +29,15 @@ test_measure test_benchmark_helpers)) -(executable +(test + (enabled_if (not %{env:CI=true})) (name main) + (package tezos-benchmark-tests) (libraries src_lib_benchmark_test_tezt_lib tezt) (modules main)) -(rule - (alias runtezt) - (package tezos-benchmark-tests) - (action (run %{dep:./main.exe}))) - (rule (targets main.ml) (action (with-stdout-to %{targets} (echo "let () = Tezt.Test.run ()")))) diff --git a/src/lib_bls12_381_polynomial/test/dune b/src/lib_bls12_381_polynomial/test/dune index 9e557fcb010f4b50c149d47872ef156088010970..e7b3d71af24cc82ffa7239710bfd3bcabf240ed3 100644 --- a/src/lib_bls12_381_polynomial/test/dune +++ b/src/lib_bls12_381_polynomial/test/dune @@ -1,17 +1,13 @@ ; This file was automatically generated, do not edit. ; Edit file manifest/main.ml instead. -(executable +(test (name main) + (package tezos-bls12-381-polynomial-internal) (libraries alcotest qcheck-alcotest polynomial bls12-381 - tezos-bls12-381-polynomial-internal)) - -(rule - (alias runtest) - (package tezos-bls12-381-polynomial-internal) - (deps srs_zcash_g1_5) - (action (run %{dep:./main.exe}))) + tezos-bls12-381-polynomial-internal) + (deps srs_zcash_g1_5)) diff --git a/src/lib_clic/test/dune b/src/lib_clic/test/dune index 871dab90af72ef949e7eb10c5794cb4e40363222..25b7a4b185a3526594ba3353a39462ae3f6ddde5 100644 --- a/src/lib_clic/test/dune +++ b/src/lib_clic/test/dune @@ -20,15 +20,15 @@ -open Octez_alcotezt) (modules test_clic)) -(executable +(test + (enabled_if (not %{env:CI=true})) (name main) + (package tezos-clic) (libraries src_lib_clic_test_tezt_lib tezt) (modules main)) -(rule (alias runtezt) (package tezos-clic) (action (run %{dep:./main.exe}))) - (rule (targets main.ml) (action (with-stdout-to %{targets} (echo "let () = Tezt.Test.run ()")))) diff --git a/src/lib_client_base/test/dune b/src/lib_client_base/test/dune index 3a85ca3c6e5b44d0001f4315f5c93a97fbd880a5..dc0d4af0c343a9483d75682e63f89afe898f7789 100644 --- a/src/lib_client_base/test/dune +++ b/src/lib_client_base/test/dune @@ -3,8 +3,9 @@ (env (_ (env-vars (NODE_PRELOAD hacl-wasm,ocaml-bls12-381,secp256k1-wasm)))) -(executables +(tests (names bip39_tests pbkdf_tests) + (package tezos-client-base) (modes native js) (libraries tezos-base @@ -17,23 +18,3 @@ (flags (:standard) -open Tezos_client_base)) - -(rule - (alias runtest) - (package tezos-client-base) - (action (run %{dep:./bip39_tests.exe}))) - -(rule - (alias runtest) - (package tezos-client-base) - (action (run %{dep:./pbkdf_tests.exe}))) - -(rule - (alias runtest_js) - (package tezos-client-base) - (action (run node %{dep:./bip39_tests.bc.js}))) - -(rule - (alias runtest_js) - (package tezos-client-base) - (action (run node %{dep:./pbkdf_tests.bc.js}))) diff --git a/src/lib_client_base_unix/test/dune b/src/lib_client_base_unix/test/dune index 1e753f34f67e732e5112e10b8ae28212cdfedecb..126e75b53b542364531003a43ef0048178785991 100644 --- a/src/lib_client_base_unix/test/dune +++ b/src/lib_client_base_unix/test/dune @@ -1,8 +1,9 @@ ; This file was automatically generated, do not edit. ; Edit file manifest/main.ml instead. -(executable +(test (name test_mockup_wallet) + (package tezos-client-base-unix) (libraries tezos-base tezos-mockup-commands @@ -17,8 +18,3 @@ (:standard) -open Tezos_base.TzPervasives -open Tezos_base_test_helpers)) - -(rule - (alias runtest) - (package tezos-client-base-unix) - (action (run %{dep:./test_mockup_wallet.exe}))) diff --git a/src/lib_context/memory/test/dune b/src/lib_context/memory/test/dune index a37f430e0551c5baaf53ee46448197ac08069776..cac986578514f369f44ac8cbbc94cbdfe4163f6b 100644 --- a/src/lib_context/memory/test/dune +++ b/src/lib_context/memory/test/dune @@ -22,18 +22,15 @@ -open Octez_alcotezt) (modules test)) -(executable +(test + (enabled_if (not %{env:CI=true})) (name main) + (package tezos-context) (libraries src_lib_context_memory_test_tezt_lib tezt) (modules main)) -(rule - (alias runtezt) - (package tezos-context) - (action (run %{dep:./main.exe}))) - (rule (targets main.ml) (action (with-stdout-to %{targets} (echo "let () = Tezt.Test.run ()")))) diff --git a/src/lib_context/test/dune b/src/lib_context/test/dune index 2f95b648b3d9619c7be6dc1118522a6dedc9dc77..0bc33354685ffc32b994774b3e5efd732c2f2c3d 100644 --- a/src/lib_context/test/dune +++ b/src/lib_context/test/dune @@ -28,18 +28,15 @@ -open Octez_alcotezt) (modules test_context test_merkle_proof)) -(executable +(test + (enabled_if (not %{env:CI=true})) (name main) + (package tezos-context) (libraries src_lib_context_test_tezt_lib tezt) (modules main)) -(rule - (alias runtezt) - (package tezos-context) - (action (run %{dep:./main.exe}))) - (rule (targets main.ml) (action (with-stdout-to %{targets} (echo "let () = Tezt.Test.run ()")))) diff --git a/src/lib_crypto/test-unix/dune b/src/lib_crypto/test-unix/dune index c59f705fde4b2f4a6a9874056f1c7a54a99b413c..35604ce7f51da23138f0beb70033e34729f0df73 100644 --- a/src/lib_crypto/test-unix/dune +++ b/src/lib_crypto/test-unix/dune @@ -1,8 +1,9 @@ ; This file was automatically generated, do not edit. ; Edit file manifest/main.ml instead. -(executable +(test (name test_crypto_box) + (package tezos-crypto) (libraries tezos-stdlib tezos-crypto @@ -23,8 +24,3 @@ -open Tezos_error_monad.TzLwtreslib -open Data_encoding -open Tezos_test_helpers)) - -(rule - (alias runtest) - (package tezos-crypto) - (action (run %{dep:./test_crypto_box.exe}))) diff --git a/src/lib_crypto/test/dune b/src/lib_crypto/test/dune index 9ceaa2c9e182f7ca21f5a176090f045e5ced788a..ca7d0dc756704518923ab7cdcbeed0c3ae754257 100644 --- a/src/lib_crypto/test/dune +++ b/src/lib_crypto/test/dune @@ -3,8 +3,9 @@ (env (_ (env-vars (NODE_PRELOAD hacl-wasm,ocaml-bls12-381,secp256k1-wasm)))) -(executables +(tests (names test_run test_prop_signature) + (package tezos-crypto) (modes native js) (libraries tezos-stdlib @@ -25,23 +26,3 @@ -open Tezos_error_monad.TzLwtreslib -open Data_encoding -open Tezos_test_helpers)) - -(rule - (alias runtest) - (package tezos-crypto) - (action (run %{dep:./test_run.exe}))) - -(rule - (alias runtest) - (package tezos-crypto) - (action (run %{dep:./test_prop_signature.exe}))) - -(rule - (alias runtest_js) - (package tezos-crypto) - (action (run node %{dep:./test_run.bc.js}))) - -(rule - (alias runtest_js) - (package tezos-crypto) - (action (run node %{dep:./test_prop_signature.bc.js}))) diff --git a/src/lib_crypto_dal/test/dune b/src/lib_crypto_dal/test/dune index 3629690668e49fd9135219e30336c5d9187d0b7b..5d6f12296c3ed56e19c8d12196ddd1968aafcaa3 100644 --- a/src/lib_crypto_dal/test/dune +++ b/src/lib_crypto_dal/test/dune @@ -1,8 +1,9 @@ ; This file was automatically generated, do not edit. ; Edit file manifest/main.ml instead. -(executable +(test (name test_dal_cryptobox) + (package tezos-crypto-dal) (libraries tezos-stdlib tezos-crypto-dal @@ -17,10 +18,5 @@ -open Tezos_stdlib -open Tezos_crypto_dal -open Tezos_error_monad - -open Data_encoding)) - -(rule - (alias runtest) - (package tezos-crypto-dal) - (deps shard_proofs_precomp) - (action (run %{dep:./test_dal_cryptobox.exe}))) + -open Data_encoding) + (deps shard_proofs_precomp)) diff --git a/src/lib_dac_node/test/dune b/src/lib_dac_node/test/dune index 2c03c2b08ec9fdc2661270eb87f1afc9babdb05b..5eed482773e7a7d882a3e649d9f2c5932f9e02bd 100644 --- a/src/lib_dac_node/test/dune +++ b/src/lib_dac_node/test/dune @@ -1,8 +1,9 @@ ; This file was automatically generated, do not edit. ; Edit file manifest/main.ml instead. -(executable +(test (name main) + (package tezos-dac-node-lib-test) (libraries tezos-stdlib tezos-stdlib-unix @@ -23,8 +24,3 @@ -open Tezos_test_helpers -open Tezos_base_test_helpers -open Tezos_dac_node_lib)) - -(rule - (alias runtest) - (package tezos-dac-node-lib-test) - (action (run %{dep:./main.exe}))) diff --git a/src/lib_dal_node/test/dune b/src/lib_dal_node/test/dune index 397ba498cd58863bdb7292c98536dded4164b20d..423b71ca9b774946692cead52a936b4fec954c15 100644 --- a/src/lib_dal_node/test/dune +++ b/src/lib_dal_node/test/dune @@ -1,8 +1,9 @@ ; This file was automatically generated, do not edit. ; Edit file manifest/main.ml instead. -(executable +(test (name test_lib_dal_node) + (package tezos-dal-node-lib) (libraries tezos-stdlib tezos-stdlib-unix @@ -25,8 +26,3 @@ -open Tezos_base_test_helpers -open Tezos_crypto_dal -open Tezos_dal_node_lib)) - -(rule - (alias runtest) - (package tezos-dal-node-lib) - (action (run %{dep:./test_lib_dal_node.exe}))) diff --git a/src/lib_error_monad/test/dune b/src/lib_error_monad/test/dune index 7d2366d55372d082834626b97244eb1615e7df4e..6d3242a5d6a67dbf80e6f986ea8c1a829b98d956 100644 --- a/src/lib_error_monad/test/dune +++ b/src/lib_error_monad/test/dune @@ -19,8 +19,10 @@ -open Octez_alcotezt) (modules test_registration test_splitted_error_encoding)) -(executable +(test + (enabled_if (not %{env:CI=true})) (name main) + (package tezos-error-monad) (modes native) (libraries src_lib_error_monad_test_tezt_lib @@ -30,17 +32,14 @@ (:include %{workspace_root}/macos-link-flags.sexp)) (modules main)) -(rule - (alias runtezt) - (package tezos-error-monad) - (action (run %{dep:./main.exe}))) - (rule (targets main.ml) (action (with-stdout-to %{targets} (echo "let () = Tezt.Test.run ()")))) -(executable +(test + (enabled_if (not %{env:CI=true})) (name main_js) + (package tezos-error-monad) (modes js) (libraries src_lib_error_monad_test_tezt_lib @@ -51,11 +50,6 @@ (:include %{workspace_root}/macos-link-flags.sexp)) (modules main_js)) -(rule - (alias runtezt_js) - (package tezos-error-monad) - (action (run node %{dep:./main_js.bc.js}))) - (rule (targets main_js.ml) (action (with-stdout-to %{targets} (echo "let () = Tezt_js.Test.run ()")))) diff --git a/src/lib_expect_helper/test/dune b/src/lib_expect_helper/test/dune index eab8ab0ce2e49522310c89d8442a78c1f0a57f76..6811c8b8ee8cc28ac605694caef98f4a274b08ed 100644 --- a/src/lib_expect_helper/test/dune +++ b/src/lib_expect_helper/test/dune @@ -7,5 +7,5 @@ (instrumentation (backend bisect_ppx)) (libraries tezos-expect-helper) - (inline_tests (flags -verbose) (modes native)) + (inline_tests (flags -verbose) (modes best)) (preprocess (pps ppx_expect))) diff --git a/src/lib_gossipsub/test/dune b/src/lib_gossipsub/test/dune index 3999bff50ea5a251b709efc406b16c61b5a4c86e..d3bf73878a39fbf4c967c849d19869d77dbbd2d4 100644 --- a/src/lib_gossipsub/test/dune +++ b/src/lib_gossipsub/test/dune @@ -1,8 +1,9 @@ ; This file was automatically generated, do not edit. ; Edit file manifest/main.ml instead. -(executable +(test (name test_gossipsub) + (package tezos-gossipsub-test) (libraries tezos-base tezos-base.unix @@ -12,8 +13,3 @@ (:standard) -open Tezos_base.TzPervasives -open Tezos_gossipsub)) - -(rule - (alias runtest) - (package tezos-gossipsub-test) - (action (run %{dep:./test_gossipsub.exe}))) diff --git a/src/lib_hacl/test/dune b/src/lib_hacl/test/dune index 0084117118db07c91765dbee6b28029454dc8a10..68599bd6fcb808676a4bfe3298c9c251ea2d3fb3 100644 --- a/src/lib_hacl/test/dune +++ b/src/lib_hacl/test/dune @@ -3,8 +3,9 @@ (env (_ (env-vars (NODE_PRELOAD hacl-wasm)))) -(executables +(tests (names test_hacl test_prop_hacl_hash test_prop_signature_pk) + (package tezos-hacl) (modes native js) (libraries tezos-stdlib @@ -25,38 +26,9 @@ -open Tezos_test_helpers) (modules (:standard \ test))) -(rule - (alias runtest) - (package tezos-hacl) - (action (run %{dep:./test_hacl.exe}))) - -(rule - (alias runtest) - (package tezos-hacl) - (action (run %{dep:./test_prop_hacl_hash.exe}))) - -(rule - (alias runtest) - (package tezos-hacl) - (action (run %{dep:./test_prop_signature_pk.exe}))) - -(rule - (alias runtest_js) - (package tezos-hacl) - (action (run node %{dep:./test_hacl.bc.js}))) - -(rule - (alias runtest_js) - (package tezos-hacl) - (action (run node %{dep:./test_prop_hacl_hash.bc.js}))) - -(rule - (alias runtest_js) - (package tezos-hacl) - (action (run node %{dep:./test_prop_signature_pk.bc.js}))) - -(executable +(test (name test) + (package tezos-hacl) (modes native js) (libraries tezos-stdlib @@ -72,10 +44,3 @@ (:standard) -open Tezos_test_helpers) (modules test)) - -(rule (alias runtest) (package tezos-hacl) (action (run %{dep:./test.exe}))) - -(rule - (alias runtest_js) - (package tezos-hacl) - (action (run node %{dep:./test.bc.js}))) diff --git a/src/lib_layer2_store/test/dune b/src/lib_layer2_store/test/dune index 06dd4ff8daab51ac9f9f5578bc9997eb37c99688..043825d5427882565a4aef09acc6f242712eed49 100644 --- a/src/lib_layer2_store/test/dune +++ b/src/lib_layer2_store/test/dune @@ -1,8 +1,9 @@ ; This file was automatically generated, do not edit. ; Edit file manifest/main.ml instead. -(executable +(test (name test_indexed_store) + (package tezos-layer2-store) (libraries tezos-error-monad tezos_layer2_store @@ -13,8 +14,3 @@ -open Tezos_error_monad -open Tezos_error_monad.TzLwtreslib -open Tezos_layer2_store)) - -(rule - (alias runtest) - (package tezos-layer2-store) - (action (run %{dep:./test_indexed_store.exe}))) diff --git a/src/lib_lazy_containers/test/dune b/src/lib_lazy_containers/test/dune index e9f31b4fd69d7eed3264da5e436068f64e5dfeb0..5362d0784c813f55588e35c410dda2c26dd249a1 100644 --- a/src/lib_lazy_containers/test/dune +++ b/src/lib_lazy_containers/test/dune @@ -20,18 +20,15 @@ -open Octez_alcotezt) (modules chunked_byte_vector_tests lazy_vector_tests)) -(executable +(test + (enabled_if (not %{env:CI=true})) (name main) + (package tezos-lazy-containers-tests) (libraries src_lib_lazy_containers_test_tezt_lib tezt) (modules main)) -(rule - (alias runtezt) - (package tezos-lazy-containers-tests) - (action (run %{dep:./main.exe}))) - (rule (targets main.ml) (action (with-stdout-to %{targets} (echo "let () = Tezt.Test.run ()")))) diff --git a/src/lib_lwt_result_stdlib/test/dune b/src/lib_lwt_result_stdlib/test/dune index ed3cd25aaa747b0e7533c86aa0b7436b82a0cf2a..01837595337aae1e26c4cc9bd271102235bca94f 100644 --- a/src/lib_lwt_result_stdlib/test/dune +++ b/src/lib_lwt_result_stdlib/test/dune @@ -33,18 +33,15 @@ test_fuzzing_set_against_stdlib test_fuzzing_map_against_stdlib)) -(executable +(test + (enabled_if (not %{env:CI=true})) (name main) + (package tezos-lwt-result-stdlib) (libraries src_lib_lwt_result_stdlib_test_tezt_lib tezt) (modules main)) -(rule - (alias runtezt) - (package tezos-lwt-result-stdlib) - (action (run %{dep:./main.exe}))) - (rule (targets main.ml) (action (with-stdout-to %{targets} (echo "let () = Tezt.Test.run ()")))) diff --git a/src/lib_micheline/dune b/src/lib_micheline/dune index 6f3802fedc356d586dd4a929a842ea44187627de..34559761244d6ea0e2f36ed7f4a02a4c1dc15624 100644 --- a/src/lib_micheline/dune +++ b/src/lib_micheline/dune @@ -12,7 +12,7 @@ tezos-stdlib tezos-error-monad data-encoding) - (inline_tests (flags -verbose) (modes native js)) + (inline_tests (flags -verbose) (modes best js)) (preprocess (pps ppx_expect)) (js_of_ocaml) (flags diff --git a/src/lib_micheline/test/dune b/src/lib_micheline/test/dune index c1cc00b9a1e9e078e082e85bbbe0140e0c982dc0..0be7705aecb684d2381d3e4768d27bd0bdd30204 100644 --- a/src/lib_micheline/test/dune +++ b/src/lib_micheline/test/dune @@ -7,7 +7,7 @@ (instrumentation (backend bisect_ppx)) (libraries tezos-micheline) - (inline_tests (flags -verbose) (modes native js)) + (inline_tests (flags -verbose) (modes best js)) (preprocess (pps ppx_expect)) (js_of_ocaml) (flags @@ -21,7 +21,7 @@ (instrumentation (backend bisect_ppx)) (libraries tezos-micheline) - (inline_tests (flags -verbose) (modes native js)) + (inline_tests (flags -verbose) (modes best js)) (preprocess (pps ppx_expect)) (js_of_ocaml) (flags diff --git a/src/lib_mockup/test/dune b/src/lib_mockup/test/dune index 1f38f01fe792b223b911920affb28dbc529d7132..61fb521bfac80595740b1c1aa1457ea577488ede 100644 --- a/src/lib_mockup/test/dune +++ b/src/lib_mockup/test/dune @@ -26,8 +26,10 @@ -open Octez_alcotezt) (modules test_mockup_args test_fuzzing_mockup_args test_persistence)) -(executable +(test + (enabled_if (not %{env:CI=true})) (name main) + (package tezos-mockup) (libraries src_lib_mockup_test_tezt_lib tezt) @@ -36,8 +38,6 @@ (:include %{workspace_root}/macos-link-flags.sexp)) (modules main)) -(rule (alias runtezt) (package tezos-mockup) (action (run %{dep:./main.exe}))) - (rule (targets main.ml) (action (with-stdout-to %{targets} (echo "let () = Tezt.Test.run ()")))) diff --git a/src/lib_p2p/test/dune b/src/lib_p2p/test/dune index 2cf1ea3609572c33feb51278ef1e5d6047de236d..6e24208dce4455ea245a71a124b92da6bd9387c3 100644 --- a/src/lib_p2p/test/dune +++ b/src/lib_p2p/test/dune @@ -1,7 +1,7 @@ ; This file was automatically generated, do not edit. ; Edit file manifest/main.ml instead. -(executables +(tests (names test_p2p_socket test_p2p_pool diff --git a/src/lib_p2p/tezt/dune b/src/lib_p2p/tezt/dune index 04b729c0bec7ca56798e694ce4edf3f94303e25a..64831c0945d7bae9f99582390adbf1f26d7fd64b 100644 --- a/src/lib_p2p/tezt/dune +++ b/src/lib_p2p/tezt/dune @@ -32,15 +32,15 @@ -open Tezos_p2p_test_common) (modules test_p2p_socket)) -(executable +(test + (enabled_if (not %{env:CI=true})) (name main) + (package tezos-p2p) (libraries src_lib_p2p_tezt_tezt_lib tezt) (modules main)) -(rule (alias runtezt) (package tezos-p2p) (action (run %{dep:./main.exe}))) - (rule (targets main.ml) (action (with-stdout-to %{targets} (echo "let () = Tezt.Test.run ()")))) diff --git a/src/lib_protocol_environment/test/dune b/src/lib_protocol_environment/test/dune index 4d87b397d6f18313cfa9d45d3c1c507298d60c1a..cd9f5164017424ce7dd4c1cf77d5550b725b67b9 100644 --- a/src/lib_protocol_environment/test/dune +++ b/src/lib_protocol_environment/test/dune @@ -1,12 +1,13 @@ ; This file was automatically generated, do not edit. ; Edit file manifest/main.ml instead. -(executables +(tests (names test_mem_context test_mem_context_array_theory test_cache test_data_encoding) + (package tezos-protocol-environment) (libraries tezos-base tezos-base.unix @@ -20,23 +21,3 @@ -open Tezos_base.TzPervasives -open Tezos_protocol_environment -open Tezos_test_helpers)) - -(rule - (alias runtest) - (package tezos-protocol-environment) - (action (run %{dep:./test_mem_context.exe}))) - -(rule - (alias runtest) - (package tezos-protocol-environment) - (action (run %{dep:./test_mem_context_array_theory.exe}))) - -(rule - (alias runtest) - (package tezos-protocol-environment) - (action (run %{dep:./test_cache.exe}))) - -(rule - (alias runtest) - (package tezos-protocol-environment) - (action (run %{dep:./test_data_encoding.exe}))) diff --git a/src/lib_protocol_environment/test_shell_context/dune b/src/lib_protocol_environment/test_shell_context/dune index cf355249d8cd3fbfd99e3f45343dc32f0904d93e..483bd624754d4284214209553d8412144ef8bf86 100644 --- a/src/lib_protocol_environment/test_shell_context/dune +++ b/src/lib_protocol_environment/test_shell_context/dune @@ -1,8 +1,9 @@ ; This file was automatically generated, do not edit. ; Edit file manifest/main.ml instead. -(executable +(test (name test_proxy_context) + (package tezos-shell-context-test) (libraries tezos-shell-context alcotest-lwt @@ -14,8 +15,3 @@ -open Tezos_test_helpers -open Tezos_base.TzPervasives -open Tezos_protocol_environment)) - -(rule - (alias runtest) - (package tezos-shell-context-test) - (action (run %{dep:./test_proxy_context.exe}))) diff --git a/src/lib_proxy/test/dune b/src/lib_proxy/test/dune index 124fbe6f55edced52d7f32fb743cf8a151a0cf3a..f8296104dcaf476c5f38a22d7d2ce9b8b15c6cba 100644 --- a/src/lib_proxy/test/dune +++ b/src/lib_proxy/test/dune @@ -1,8 +1,9 @@ ; This file was automatically generated, do not edit. ; Edit file manifest/main.ml instead. -(executables +(tests (names test_proxy test_fuzzing_proxy_getter test_light test_fuzzing_light) + (package tezos-proxy) (libraries tezos-base tezos-base.unix @@ -22,23 +23,3 @@ -open Tezos_base.TzPervasives -open Tezos_base_test_helpers -open Tezos_test_helpers)) - -(rule - (alias runtest) - (package tezos-proxy) - (action (run %{dep:./test_proxy.exe}))) - -(rule - (alias runtest) - (package tezos-proxy) - (action (run %{dep:./test_fuzzing_proxy_getter.exe}))) - -(rule - (alias runtest) - (package tezos-proxy) - (action (run %{dep:./test_light.exe}))) - -(rule - (alias runtest) - (package tezos-proxy) - (action (run %{dep:./test_fuzzing_light.exe}))) diff --git a/src/lib_proxy_server_config/test/dune b/src/lib_proxy_server_config/test/dune index 2fa1faabec7e53693463b655f5605c98d2cd47a8..83e8578099eea4cdeac668ef042baef431872481 100644 --- a/src/lib_proxy_server_config/test/dune +++ b/src/lib_proxy_server_config/test/dune @@ -1,8 +1,9 @@ ; This file was automatically generated, do not edit. ; Edit file manifest/main.ml instead. -(executable +(test (name test_proxy_server_config) + (package tezos-proxy-server-config) (libraries tezos-base tezos-base.unix @@ -15,8 +16,3 @@ (:standard) -open Tezos_base.TzPervasives -open Tezos_test_helpers)) - -(rule - (alias runtest) - (package tezos-proxy-server-config) - (action (run %{dep:./test_proxy_server_config.exe}))) diff --git a/src/lib_requester/test/dune b/src/lib_requester/test/dune index 28e883f46387ac4528e47ec423b46e6d622ccf49..af91bcff3538cdd6562d8b1b744aaa149d9d0c0e 100644 --- a/src/lib_requester/test/dune +++ b/src/lib_requester/test/dune @@ -1,8 +1,9 @@ ; This file was automatically generated, do not edit. ; Edit file manifest/main.ml instead. -(executables +(tests (names test_requester test_fuzzing_requester) + (package tezos-requester) (libraries tezos-base tezos-base.unix @@ -20,13 +21,3 @@ -open Tezos_base_test_helpers -open Tezos_stdlib -open Tezos_requester)) - -(rule - (alias runtest) - (package tezos-requester) - (action (run %{dep:./test_requester.exe}))) - -(rule - (alias runtest) - (package tezos-requester) - (action (run %{dep:./test_fuzzing_requester.exe}))) diff --git a/src/lib_rpc_http/test/dune b/src/lib_rpc_http/test/dune index 415d3b6506f820a2545bac61e49f3d547f7f94fc..c2d6ad83699c5364467d9eccbd90fa109cbfd8b6 100644 --- a/src/lib_rpc_http/test/dune +++ b/src/lib_rpc_http/test/dune @@ -1,8 +1,9 @@ ; This file was automatically generated, do not edit. ; Edit file manifest/main.ml instead. -(executable +(test (name test_rpc_http) + (package tezos-rpc-http-server) (libraries tezos-base tezos-base.unix @@ -20,8 +21,3 @@ -open Tezos_test_helpers -open Tezos_base_test_helpers -open Tezos_rpc_http_server)) - -(rule - (alias runtest) - (package tezos-rpc-http-server) - (action (run %{dep:./test_rpc_http.exe}))) diff --git a/src/lib_sapling/test/dune b/src/lib_sapling/test/dune index 7f285d96f8f719330c6373459d7ae0fe5c880ec0..41689434eb50a5e37f52f99f9309ee06ce000ca8 100644 --- a/src/lib_sapling/test/dune +++ b/src/lib_sapling/test/dune @@ -3,8 +3,9 @@ (env (_ (env-vars (NODE_PRELOAD hacl-wasm,ocaml-bls12-381,secp256k1-wasm)))) -(executable +(test (name test_js) + (package tezos-sapling) (modes js) (libraries tezos-sapling @@ -15,11 +16,6 @@ (-linkall)) (modules test_js)) -(rule - (alias runtest_js) - (package tezos-sapling) - (action (run node %{dep:./test_js.bc.js}))) - (library (name src_lib_sapling_test_tezt_lib) (instrumentation (backend bisect_ppx)) @@ -54,21 +50,18 @@ keys example)) -(executable +(test + (enabled_if (not %{env:CI=true})) (name main) + (package tezos-sapling) (libraries src_lib_sapling_test_tezt_lib tezt) (link_flags (:standard) (:include %{workspace_root}/macos-link-flags.sexp)) - (modules main)) - -(rule - (alias runtezt) - (package tezos-sapling) - (deps vectors.csv vectors-zip32.csv) - (action (run %{dep:./main.exe}))) + (modules main) + (deps vectors.csv vectors-zip32.csv)) (rule (targets main.ml) diff --git a/src/lib_scoru_wasm/fast/test/dune b/src/lib_scoru_wasm/fast/test/dune index 82fd09e25114050d2084f1245569d48e5d5c21c5..384d62e837a922a61a8e2464602e60c87731054d 100644 --- a/src/lib_scoru_wasm/fast/test/dune +++ b/src/lib_scoru_wasm/fast/test/dune @@ -1,8 +1,9 @@ ; This file was automatically generated, do not edit. ; Edit file manifest/main.ml instead. -(executable +(test (name test_scoru_wasm_fast) + (package tezos-scoru-wasm-fast-test) (libraries tezos-base tezos-tree-encoding @@ -24,8 +25,3 @@ -open Tezos_scoru_wasm_helpers -open Tezos_scoru_wasm_test_helpers -open Tezos_test_helpers)) - -(rule - (alias runtest) - (package tezos-scoru-wasm-fast-test) - (action (run %{dep:./test_scoru_wasm_fast.exe}))) diff --git a/src/lib_scoru_wasm/test/dune b/src/lib_scoru_wasm/test/dune index 0b840033c722fd5cc90e7dc10331bfa2e8a0ca79..6d5b39028d1f447cc19744a3274f3ee417a8391f 100644 --- a/src/lib_scoru_wasm/test/dune +++ b/src/lib_scoru_wasm/test/dune @@ -1,8 +1,9 @@ ; This file was automatically generated, do not edit. ; Edit file manifest/main.ml instead. -(executable +(test (name test_scoru_wasm) + (package tezos-scoru-wasm-test) (libraries tezos-base tezos-tree-encoding @@ -25,8 +26,3 @@ -open Tezos_scoru_wasm_helpers -open Tezos_scoru_wasm_test_helpers -open Tezos_webassembly_interpreter_extra)) - -(rule - (alias runtest) - (package tezos-scoru-wasm-test) - (action (run %{dep:./test_scoru_wasm.exe}))) diff --git a/src/lib_shell/dune b/src/lib_shell/dune index bb84cee488dfbfc88f3d55b75f8e8663235563eb..a0f941e39bc00254bbcdfa0c0e85a52c5eace45f 100644 --- a/src/lib_shell/dune +++ b/src/lib_shell/dune @@ -28,7 +28,7 @@ tezos-validation tezos-version lwt-exit) - (inline_tests (flags -verbose) (modes native)) + (inline_tests (flags -verbose) (modes best)) (preprocess (pps ppx_expect)) (flags (:standard) diff --git a/src/lib_shell/test/dune b/src/lib_shell/test/dune index 2aec3b2c0fe014c72c366cca28334becf2796712..dd54ec515c788c1e31a420654f70ec7fd1f3ef5b 100644 --- a/src/lib_shell/test/dune +++ b/src/lib_shell/test/dune @@ -65,8 +65,10 @@ test_synchronisation_heuristic_fuzzy test_validator)) -(executable +(test + (enabled_if (not %{env:CI=true})) (name main) + (package tezos-shell) (libraries src_lib_shell_test_tezt_lib tezt) @@ -75,8 +77,6 @@ (:include %{workspace_root}/macos-link-flags.sexp)) (modules main)) -(rule (alias runtezt) (package tezos-shell) (action (run %{dep:./main.exe}))) - (rule (targets main.ml) (action (with-stdout-to %{targets} (echo "let () = Tezt.Test.run ()")))) diff --git a/src/lib_shell_services/test/dune b/src/lib_shell_services/test/dune index 6f1ce151d48035cacba675d346a237ca9b5bf70d..4bcb9b3d3f1715706927207d2b93db2c2530666e 100644 --- a/src/lib_shell_services/test/dune +++ b/src/lib_shell_services/test/dune @@ -3,8 +3,9 @@ (env (_ (env-vars (NODE_PRELOAD hacl-wasm,ocaml-bls12-381,secp256k1-wasm)))) -(executable +(test (name test_block_services) + (package tezos-shell-services) (modes native js) (libraries tezos-base @@ -15,13 +16,3 @@ (:standard) -open Tezos_base.TzPervasives -open Tezos_shell_services)) - -(rule - (alias runtest) - (package tezos-shell-services) - (action (run %{dep:./test_block_services.exe}))) - -(rule - (alias runtest_js) - (package tezos-shell-services) - (action (run node %{dep:./test_block_services.bc.js}))) diff --git a/src/lib_shell_services/test_helpers/test/dune b/src/lib_shell_services/test_helpers/test/dune index 48e60c51dcf4643edcbea17e5532422cf3639b48..6999e17556219e4ba5d74f08a84ec71f65e7f1b1 100644 --- a/src/lib_shell_services/test_helpers/test/dune +++ b/src/lib_shell_services/test_helpers/test/dune @@ -1,8 +1,9 @@ ; This file was automatically generated, do not edit. ; Edit file manifest/main.ml instead. -(executable +(test (name test_block_services) + (package tezos-shell-services-test-helpers) (libraries tezos-base tezos-base.unix @@ -15,8 +16,3 @@ (:standard) -open Tezos_base.TzPervasives -open Tezos_test_helpers)) - -(rule - (alias runtest) - (package tezos-shell-services-test-helpers) - (action (run %{dep:./test_block_services.exe}))) diff --git a/src/lib_signer_backends/test/dune b/src/lib_signer_backends/test/dune index f6bfb9417596f790c4a296addc04172d70229be0..bf521287b50b2dd6f29502d1e3ce0687264cafbc 100644 --- a/src/lib_signer_backends/test/dune +++ b/src/lib_signer_backends/test/dune @@ -28,8 +28,10 @@ -open Octez_alcotezt) (modules test_encrypted)) -(executable +(test + (enabled_if (not %{env:CI=true})) (name main) + (package tezos-signer-backends) (libraries src_lib_signer_backends_test_tezt_lib tezt) @@ -38,11 +40,6 @@ (:include %{workspace_root}/macos-link-flags.sexp)) (modules main)) -(rule - (alias runtezt) - (package tezos-signer-backends) - (action (run %{dep:./main.exe}))) - (rule (targets main.ml) (action (with-stdout-to %{targets} (echo "let () = Tezt.Test.run ()")))) diff --git a/src/lib_signer_backends/unix/test/dune b/src/lib_signer_backends/unix/test/dune index 279c7f3456cd4eb68912e8436d0f4b189c00d0b3..633a10b975698a745278803744ff5543014427a4 100644 --- a/src/lib_signer_backends/unix/test/dune +++ b/src/lib_signer_backends/unix/test/dune @@ -24,8 +24,10 @@ -open Octez_alcotezt) (modules test_crouching)) -(executable +(test + (enabled_if (not %{env:CI=true})) (name main) + (package tezos-signer-backends) (libraries src_lib_signer_backends_unix_test_tezt_lib tezt) @@ -34,11 +36,6 @@ (:include %{workspace_root}/macos-link-flags.sexp)) (modules main)) -(rule - (alias runtezt) - (package tezos-signer-backends) - (action (run %{dep:./main.exe}))) - (rule (targets main.ml) (action (with-stdout-to %{targets} (echo "let () = Tezt.Test.run ()")))) diff --git a/src/lib_stdlib/dune b/src/lib_stdlib/dune index 78926ff015ba8b762e5d9827e431e645264e9bd9..f07d0adaf23b42e9168532fb0a5c78e1a56d123c 100644 --- a/src/lib_stdlib/dune +++ b/src/lib_stdlib/dune @@ -11,7 +11,7 @@ zarith_stubs_js lwt aches) - (inline_tests (flags -verbose) (modes native js)) + (inline_tests (flags -verbose) (modes best js)) (preprocess (pps ppx_expect)) (js_of_ocaml (javascript_files tzBytes_js.js)) (foreign_stubs (language c) (names tzBytes_c))) diff --git a/src/lib_stdlib/test-unix/dune b/src/lib_stdlib/test-unix/dune index 6168adb3e6a9ea37c4980da7a60c81ccb3c68d86..bdd77761b41a099be33806b98e2b4291902fb9e1 100644 --- a/src/lib_stdlib/test-unix/dune +++ b/src/lib_stdlib/test-unix/dune @@ -27,15 +27,15 @@ test_circular_buffer_fuzzy test_hash_queue_lwt)) -(executable +(test + (enabled_if (not %{env:CI=true})) (name main) + (package tezos-stdlib) (libraries src_lib_stdlib_test_unix_tezt_lib tezt) (modules main)) -(rule (alias runtezt) (package tezos-stdlib) (action (run %{dep:./main.exe}))) - (rule (targets main.ml) (action (with-stdout-to %{targets} (echo "let () = Tezt.Test.run ()")))) diff --git a/src/lib_stdlib/test/dune b/src/lib_stdlib/test/dune index 71eddb64e67e60951cb75f87b5d4ab5d7eb089dd..6388c69012e561db0b4ea7c7dfb3bbae65e2afbf 100644 --- a/src/lib_stdlib/test/dune +++ b/src/lib_stdlib/test/dune @@ -31,8 +31,10 @@ test_tzBytes test_arrays)) -(executable +(test + (enabled_if (not %{env:CI=true})) (name main) + (package tezos-stdlib) (modes native) (libraries src_lib_stdlib_test_tezt_lib @@ -42,14 +44,14 @@ (:include %{workspace_root}/macos-link-flags.sexp)) (modules main)) -(rule (alias runtezt) (package tezos-stdlib) (action (run %{dep:./main.exe}))) - (rule (targets main.ml) (action (with-stdout-to %{targets} (echo "let () = Tezt.Test.run ()")))) -(executable +(test + (enabled_if (not %{env:CI=true})) (name main_js) + (package tezos-stdlib) (modes js) (libraries src_lib_stdlib_test_tezt_lib @@ -60,11 +62,6 @@ (:include %{workspace_root}/macos-link-flags.sexp)) (modules main_js)) -(rule - (alias runtezt_js) - (package tezos-stdlib) - (action (run node %{dep:./main_js.bc.js}))) - (rule (targets main_js.ml) (action (with-stdout-to %{targets} (echo "let () = Tezt_js.Test.run ()")))) diff --git a/src/lib_stdlib_unix/test/dune b/src/lib_stdlib_unix/test/dune index 5210e8034e4ae0895b621017a5644272a0d66b6a..0587a08badcba2ea28c9a670b4fcb55f089b0e60 100644 --- a/src/lib_stdlib_unix/test/dune +++ b/src/lib_stdlib_unix/test/dune @@ -21,18 +21,15 @@ -open Octez_alcotezt) (modules test_key_value_store_fuzzy)) -(executable +(test + (enabled_if (not %{env:CI=true})) (name main) + (package tezos-stdlib-unix) (libraries src_lib_stdlib_unix_test__tezt_lib tezt) (modules main)) -(rule - (alias runtezt) - (package tezos-stdlib-unix) - (action (run %{dep:./main.exe}))) - (rule (targets main.ml) (action (with-stdout-to %{targets} (echo "let () = Tezt.Test.run ()")))) diff --git a/src/lib_store/unix/test/dune b/src/lib_store/unix/test/dune index 86954a3911562cae353453af98345a881cf50d7b..41cdfc9c44872020cac866f42c28753023b8b3e7 100644 --- a/src/lib_store/unix/test/dune +++ b/src/lib_store/unix/test/dune @@ -1,7 +1,7 @@ ; This file was automatically generated, do not edit. ; Edit file manifest/main.ml instead. -(executables +(tests (names test test_consistency diff --git a/src/lib_tree_encoding/test/dune b/src/lib_tree_encoding/test/dune index 61506b71b087602a4c38888bef4d6cd769465ce8..a118452b45767a893936cb8c4d28fff6cfe50773 100644 --- a/src/lib_tree_encoding/test/dune +++ b/src/lib_tree_encoding/test/dune @@ -1,8 +1,9 @@ ; This file was automatically generated, do not edit. ; Edit file manifest/main.ml instead. -(executable +(test (name test_tree_encoding) + (package tezos-tree-encoding-test) (libraries tezos-base tezos-tree-encoding @@ -18,8 +19,3 @@ -open Tezos_base.TzPervasives -open Tezos_base_test_helpers -open Tezos_test_helpers)) - -(rule - (alias runtest) - (package tezos-tree-encoding-test) - (action (run %{dep:./test_tree_encoding.exe}))) diff --git a/src/lib_version/test/dune b/src/lib_version/test/dune index 37000ed1a73c28a7101dfd4002ede2c655806bee..bf0403cbf5b26bf57ac25279928b59259a70a4b4 100644 --- a/src/lib_version/test/dune +++ b/src/lib_version/test/dune @@ -3,8 +3,9 @@ (env (_ (env-vars (NODE_PRELOAD hacl-wasm,ocaml-bls12-381,secp256k1-wasm)))) -(executable +(test (name test_parser) + (package tezos-version) (modes native js) (libraries tezos-version @@ -14,13 +15,3 @@ (flags (:standard) -open Tezos_version)) - -(rule - (alias runtest) - (package tezos-version) - (action (run %{dep:./test_parser.exe}))) - -(rule - (alias runtest_js) - (package tezos-version) - (action (run node %{dep:./test_parser.bc.js}))) diff --git a/src/lib_webassembly/tests/dune b/src/lib_webassembly/tests/dune index 3baa8375c13590773a593ed8792edec42f72780c..7c9f834d08f6f8c6749dce9cf402b09fcdf57790 100644 --- a/src/lib_webassembly/tests/dune +++ b/src/lib_webassembly/tests/dune @@ -1,8 +1,9 @@ ; This file was automatically generated, do not edit. ; Edit file manifest/main.ml instead. -(executable +(test (name main) + (package tezos-webassembly-interpreter) (libraries tezos-webassembly-interpreter alcotest) @@ -10,9 +11,4 @@ (:standard) -open Tezos_webassembly_interpreter)) -(rule - (alias runtest) - (package tezos-webassembly-interpreter) - (action (run %{dep:./main.exe}))) - (include_subdirs no) diff --git a/src/lib_workers/test/dune b/src/lib_workers/test/dune index 81bbeec75a585dbb567d601cd0476d1cb880cb2e..36c55ae7c98d9fdf6e259b21ada4a3705fe19de3 100644 --- a/src/lib_workers/test/dune +++ b/src/lib_workers/test/dune @@ -29,18 +29,15 @@ -open Octez_alcotezt) (modules mocked_worker test_workers_unit)) -(executable +(test + (enabled_if (not %{env:CI=true})) (name main) + (package tezos-workers) (libraries src_lib_workers_test_tezt_lib tezt) (modules main)) -(rule - (alias runtezt) - (package tezos-workers) - (action (run %{dep:./main.exe}))) - (rule (targets main.ml) (action (with-stdout-to %{targets} (echo "let () = Tezt.Test.run ()")))) diff --git a/src/proto_009_PsFLoren/lib_client/dune b/src/proto_009_PsFLoren/lib_client/dune index d0e91b385d242456ea003b7774dc5c323f2448b8..25fae2ad2367164c97be1a8c0ee1837101dcffce 100644 --- a/src/proto_009_PsFLoren/lib_client/dune +++ b/src/proto_009_PsFLoren/lib_client/dune @@ -15,7 +15,7 @@ tezos-protocol-plugin-009-PsFLoren tezos-rpc uri) - (inline_tests (flags -verbose) (modes native)) + (inline_tests (flags -verbose) (modes best)) (preprocess (pps ppx_expect)) (library_flags (:standard -linkall)) (flags diff --git a/src/proto_010_PtGRANAD/lib_client/dune b/src/proto_010_PtGRANAD/lib_client/dune index 8b151b6e19af0bb1cac82eaa2fdd9056c8a4d398..f05bd1c626e269edf74b852320f6f77121c85746 100644 --- a/src/proto_010_PtGRANAD/lib_client/dune +++ b/src/proto_010_PtGRANAD/lib_client/dune @@ -15,7 +15,7 @@ tezos-protocol-plugin-010-PtGRANAD tezos-rpc uri) - (inline_tests (flags -verbose) (modes native)) + (inline_tests (flags -verbose) (modes best)) (preprocess (pps ppx_expect)) (library_flags (:standard -linkall)) (flags diff --git a/src/proto_011_PtHangz2/lib_client/dune b/src/proto_011_PtHangz2/lib_client/dune index 2e25d4f78c53427f7eb77332ca61fa6f54244437..5b88e2b24dc3ed10283818056d64c64551c4a5f7 100644 --- a/src/proto_011_PtHangz2/lib_client/dune +++ b/src/proto_011_PtHangz2/lib_client/dune @@ -18,7 +18,7 @@ tezos-protocol-011-PtHangz2.parameters tezos-rpc uri) - (inline_tests (flags -verbose) (modes native)) + (inline_tests (flags -verbose) (modes best)) (preprocess (pps ppx_expect)) (library_flags (:standard -linkall)) (flags diff --git a/src/proto_011_PtHangz2/lib_client/test/dune b/src/proto_011_PtHangz2/lib_client/test/dune index 200fb8b9fde96536c1f6f8168c160439e0abdd37..3a5630bf636cedec797974a9028ba79c2ecff0d7 100644 --- a/src/proto_011_PtHangz2/lib_client/test/dune +++ b/src/proto_011_PtHangz2/lib_client/test/dune @@ -33,8 +33,10 @@ test_client_proto_context test_proxy)) -(executable +(test + (enabled_if (not %{env:CI=true})) (name main) + (package tezos-client-011-PtHangz2) (libraries src_proto_011_PtHangz2_lib_client_test_tezt_lib tezt) @@ -43,11 +45,6 @@ (:include %{workspace_root}/macos-link-flags.sexp)) (modules main)) -(rule - (alias runtezt) - (package tezos-client-011-PtHangz2) - (action (run %{dep:./main.exe}))) - (rule (targets main.ml) (action (with-stdout-to %{targets} (echo "let () = Tezt.Test.run ()")))) diff --git a/src/proto_012_Psithaca/lib_client/dune b/src/proto_012_Psithaca/lib_client/dune index 3e6c7079180bc82d751f2e865972a0642bfa161d..243066f389f4a7a389417924d85d78c1ddfbd642 100644 --- a/src/proto_012_Psithaca/lib_client/dune +++ b/src/proto_012_Psithaca/lib_client/dune @@ -18,7 +18,7 @@ tezos-protocol-012-Psithaca.parameters tezos-rpc uri) - (inline_tests (flags -verbose) (modes native)) + (inline_tests (flags -verbose) (modes best)) (preprocess (pps ppx_expect)) (library_flags (:standard -linkall)) (flags diff --git a/src/proto_012_Psithaca/lib_client/test/dune b/src/proto_012_Psithaca/lib_client/test/dune index d4ad8475c3fd117c84b6b3005dfd9f3143eb9b85..a9ba3743fbbd8d49e6d1973a1d013b7a42dcaa02 100644 --- a/src/proto_012_Psithaca/lib_client/test/dune +++ b/src/proto_012_Psithaca/lib_client/test/dune @@ -33,8 +33,10 @@ test_client_proto_context test_proxy)) -(executable +(test + (enabled_if (not %{env:CI=true})) (name main) + (package tezos-client-012-Psithaca) (libraries src_proto_012_Psithaca_lib_client_test_tezt_lib tezt) @@ -43,11 +45,6 @@ (:include %{workspace_root}/macos-link-flags.sexp)) (modules main)) -(rule - (alias runtezt) - (package tezos-client-012-Psithaca) - (action (run %{dep:./main.exe}))) - (rule (targets main.ml) (action (with-stdout-to %{targets} (echo "let () = Tezt.Test.run ()")))) diff --git a/src/proto_013_PtJakart/lib_client/dune b/src/proto_013_PtJakart/lib_client/dune index 07281e9cdbccf61cd07d294b7bc6e4ca8cdd142d..ab7e3afc9f5ca2021e53e558b360d2a64e9aab8d 100644 --- a/src/proto_013_PtJakart/lib_client/dune +++ b/src/proto_013_PtJakart/lib_client/dune @@ -18,7 +18,7 @@ tezos-protocol-013-PtJakart.parameters tezos-rpc uri) - (inline_tests (flags -verbose) (modes native)) + (inline_tests (flags -verbose) (modes best)) (preprocess (pps ppx_expect)) (library_flags (:standard -linkall)) (flags diff --git a/src/proto_013_PtJakart/lib_client/test/dune b/src/proto_013_PtJakart/lib_client/test/dune index 8ff6793857259e04a1c6f948f0f0cdb264276678..69e5d60b9b670033c05809cfbad9eaada9913eb4 100644 --- a/src/proto_013_PtJakart/lib_client/test/dune +++ b/src/proto_013_PtJakart/lib_client/test/dune @@ -33,8 +33,10 @@ test_client_proto_context test_proxy)) -(executable +(test + (enabled_if (not %{env:CI=true})) (name main) + (package tezos-client-013-PtJakart) (libraries src_proto_013_PtJakart_lib_client_test_tezt_lib tezt) @@ -43,11 +45,6 @@ (:include %{workspace_root}/macos-link-flags.sexp)) (modules main)) -(rule - (alias runtezt) - (package tezos-client-013-PtJakart) - (action (run %{dep:./main.exe}))) - (rule (targets main.ml) (action (with-stdout-to %{targets} (echo "let () = Tezt.Test.run ()")))) diff --git a/src/proto_014_PtKathma/lib_client/dune b/src/proto_014_PtKathma/lib_client/dune index 66d3312f0755ec803b0ec5e6f9ed1ed1342e0167..84ee7b896963d44140eb666d4e7ced569625b00f 100644 --- a/src/proto_014_PtKathma/lib_client/dune +++ b/src/proto_014_PtKathma/lib_client/dune @@ -18,7 +18,7 @@ tezos-protocol-014-PtKathma.parameters tezos-rpc uri) - (inline_tests (flags -verbose) (modes native)) + (inline_tests (flags -verbose) (modes best)) (preprocess (pps ppx_expect)) (library_flags (:standard -linkall)) (flags diff --git a/src/proto_014_PtKathma/lib_client/test/dune b/src/proto_014_PtKathma/lib_client/test/dune index ff380de3987acfd197434681de17e5715b4e00c6..76a294c8aae1074801a066a73b6fecef0675d7be 100644 --- a/src/proto_014_PtKathma/lib_client/test/dune +++ b/src/proto_014_PtKathma/lib_client/test/dune @@ -33,8 +33,10 @@ test_client_proto_context test_proxy)) -(executable +(test + (enabled_if (not %{env:CI=true})) (name main) + (package tezos-client-014-PtKathma) (libraries src_proto_014_PtKathma_lib_client_test_tezt_lib tezt) @@ -43,11 +45,6 @@ (:include %{workspace_root}/macos-link-flags.sexp)) (modules main)) -(rule - (alias runtezt) - (package tezos-client-014-PtKathma) - (action (run %{dep:./main.exe}))) - (rule (targets main.ml) (action (with-stdout-to %{targets} (echo "let () = Tezt.Test.run ()")))) diff --git a/src/proto_015_PtLimaPt/lib_benchmark/lib_benchmark_type_inference/test/dune b/src/proto_015_PtLimaPt/lib_benchmark/lib_benchmark_type_inference/test/dune index efc91d435dab6cffe1ed1b095ff6e0e8e6e74cc0..841a8fd9f3bd81d06705ff13c6eabe2ed0e5b182 100644 --- a/src/proto_015_PtLimaPt/lib_benchmark/lib_benchmark_type_inference/test/dune +++ b/src/proto_015_PtLimaPt/lib_benchmark/lib_benchmark_type_inference/test/dune @@ -1,8 +1,9 @@ ; This file was automatically generated, do not edit. ; Edit file manifest/main.ml instead. -(executables +(tests (names test_uf test_inference) + (package tezos-benchmark-type-inference-015-PtLimaPt) (libraries tezos-micheline tezos-micheline-rewriting @@ -17,13 +18,3 @@ (:standard) -open Tezos_micheline -open Tezos_benchmark_type_inference_015_PtLimaPt)) - -(rule - (alias runtest) - (package tezos-benchmark-type-inference-015-PtLimaPt) - (action (run %{dep:./test_uf.exe}))) - -(rule - (alias runtest) - (package tezos-benchmark-type-inference-015-PtLimaPt) - (action (run %{dep:./test_inference.exe}))) diff --git a/src/proto_015_PtLimaPt/lib_benchmark/test/dune b/src/proto_015_PtLimaPt/lib_benchmark/test/dune index 655a7af5f3f3b98bbe9afc5881e9ec7e08128157..3f15ed0509cfc8a2ad7516944e54dfb2b0b94897 100644 --- a/src/proto_015_PtLimaPt/lib_benchmark/test/dune +++ b/src/proto_015_PtLimaPt/lib_benchmark/test/dune @@ -1,7 +1,7 @@ ; This file was automatically generated, do not edit. ; Edit file manifest/main.ml instead. -(executables +(tests (names test_sampling_data test_sampling_code diff --git a/src/proto_015_PtLimaPt/lib_client/dune b/src/proto_015_PtLimaPt/lib_client/dune index 3f8dd5064555df196bdfc9c24d7e33fe849c3f33..35d960705daabf396008e13fe7c8664b4f2f2ef3 100644 --- a/src/proto_015_PtLimaPt/lib_client/dune +++ b/src/proto_015_PtLimaPt/lib_client/dune @@ -18,7 +18,7 @@ tezos-protocol-015-PtLimaPt.parameters tezos-rpc uri) - (inline_tests (flags -verbose) (modes native)) + (inline_tests (flags -verbose) (modes best)) (preprocess (pps ppx_expect)) (library_flags (:standard -linkall)) (flags diff --git a/src/proto_015_PtLimaPt/lib_client/test/dune b/src/proto_015_PtLimaPt/lib_client/test/dune index c4ce3d7758efb37a94aab520d88f8edde631fe82..e3fb7d4bf52eb0d8bfba5176d7b682a243443439 100644 --- a/src/proto_015_PtLimaPt/lib_client/test/dune +++ b/src/proto_015_PtLimaPt/lib_client/test/dune @@ -33,8 +33,10 @@ test_client_proto_context test_proxy)) -(executable +(test + (enabled_if (not %{env:CI=true})) (name main) + (package tezos-client-015-PtLimaPt) (libraries src_proto_015_PtLimaPt_lib_client_test_tezt_lib tezt) @@ -43,11 +45,6 @@ (:include %{workspace_root}/macos-link-flags.sexp)) (modules main)) -(rule - (alias runtezt) - (package tezos-client-015-PtLimaPt) - (action (run %{dep:./main.exe}))) - (rule (targets main.ml) (action (with-stdout-to %{targets} (echo "let () = Tezt.Test.run ()")))) diff --git a/src/proto_015_PtLimaPt/lib_delegate/test/dune b/src/proto_015_PtLimaPt/lib_delegate/test/dune index f4a7c57b6c7f16ffcd7d3c5b29a19e75e07ac950..15f2b9b5b21bca08df10a3b6f75d8d0a23263c29 100644 --- a/src/proto_015_PtLimaPt/lib_delegate/test/dune +++ b/src/proto_015_PtLimaPt/lib_delegate/test/dune @@ -33,8 +33,10 @@ -open Octez_alcotezt) (modules test_scenario)) -(executable +(test + (enabled_if (not %{env:CI=true})) (name main) + (package tezos-baking-015-PtLimaPt) (libraries src_proto_015_PtLimaPt_lib_delegate_test_tezt_lib tezt) @@ -43,11 +45,6 @@ (:include %{workspace_root}/macos-link-flags.sexp)) (modules main)) -(rule - (alias runtezt) - (package tezos-baking-015-PtLimaPt) - (action (run %{dep:./main.exe}))) - (rule (targets main.ml) (action (with-stdout-to %{targets} (echo "let () = Tezt.Test.run ()")))) diff --git a/src/proto_015_PtLimaPt/lib_delegate/test/tenderbrute/dune b/src/proto_015_PtLimaPt/lib_delegate/test/tenderbrute/dune index 5caadce0be7e25414c86e79ea055c339f40e2477..3eb37f9034c217511d0924b2b8f05adf2c8e8af4 100644 --- a/src/proto_015_PtLimaPt/lib_delegate/test/tenderbrute/dune +++ b/src/proto_015_PtLimaPt/lib_delegate/test/tenderbrute/dune @@ -1,7 +1,7 @@ ; This file was automatically generated, do not edit. ; Edit file manifest/main.ml instead. -(executable +(test (name tenderbrute_main) (libraries tezos-base diff --git a/src/proto_015_PtLimaPt/lib_injector/dune b/src/proto_015_PtLimaPt/lib_injector/dune index dedd275bf0b029006edbd77aef77eb5c74c14358..c27c613cfbde585046eb90fc1049ea00e2ef872c 100644 --- a/src/proto_015_PtLimaPt/lib_injector/dune +++ b/src/proto_015_PtLimaPt/lib_injector/dune @@ -16,7 +16,7 @@ tezos-client-base tezos-workers tezos-shell) - (inline_tests (flags -verbose) (modes native)) + (inline_tests (flags -verbose) (modes best)) (preprocess (pps ppx_expect)) (library_flags (:standard -linkall)) (flags diff --git a/src/proto_015_PtLimaPt/lib_plugin/test/dune b/src/proto_015_PtLimaPt/lib_plugin/test/dune index a0b290a4f167bead2622a4e60c7fefd1c1f70dc3..d6b17036bf711c16d2bcfc1f4be0b102ec8d1ec2 100644 --- a/src/proto_015_PtLimaPt/lib_plugin/test/dune +++ b/src/proto_015_PtLimaPt/lib_plugin/test/dune @@ -42,8 +42,10 @@ test_utils generators)) -(executable +(test + (enabled_if (not %{env:CI=true})) (name main) + (package tezos-protocol-plugin-015-PtLimaPt-tests) (libraries src_proto_015_PtLimaPt_lib_plugin_test_tezt_lib tezt) @@ -52,11 +54,6 @@ (:include %{workspace_root}/macos-link-flags.sexp)) (modules main)) -(rule - (alias runtezt) - (package tezos-protocol-plugin-015-PtLimaPt-tests) - (action (run %{dep:./main.exe}))) - (rule (targets main.ml) (action (with-stdout-to %{targets} (echo "let () = Tezt.Test.run ()")))) diff --git a/src/proto_015_PtLimaPt/lib_protocol/test/integration/consensus/dune b/src/proto_015_PtLimaPt/lib_protocol/test/integration/consensus/dune index 019c3ff48270c6d938a214c96e7145703b61c527..2a9a8ccf3a87a3c045fcf6ea1573eea02a35a177 100644 --- a/src/proto_015_PtLimaPt/lib_protocol/test/integration/consensus/dune +++ b/src/proto_015_PtLimaPt/lib_protocol/test/integration/consensus/dune @@ -1,8 +1,9 @@ ; This file was automatically generated, do not edit. ; Edit file manifest/main.ml instead. -(executable +(test (name main) + (package tezos-protocol-015-PtLimaPt-tests) (libraries alcotest-lwt tezos-base @@ -23,8 +24,3 @@ -open Tezos_base_test_helpers -open Tezos_protocol_015_PtLimaPt_parameters -open Tezos_protocol_plugin_015_PtLimaPt)) - -(rule - (alias runtest) - (package tezos-protocol-015-PtLimaPt-tests) - (action (run %{dep:./main.exe}))) diff --git a/src/proto_015_PtLimaPt/lib_protocol/test/integration/dune b/src/proto_015_PtLimaPt/lib_protocol/test/integration/dune index 6a69c9f280abcc3b4aecefbb6f112239d2c2329c..4b8a2bcd0eacd8958131cd86d383f60389c57787 100644 --- a/src/proto_015_PtLimaPt/lib_protocol/test/integration/dune +++ b/src/proto_015_PtLimaPt/lib_protocol/test/integration/dune @@ -1,8 +1,9 @@ ; This file was automatically generated, do not edit. ; Edit file manifest/main.ml instead. -(executable +(test (name main) + (package tezos-protocol-015-PtLimaPt-tests) (libraries tezt tezos-context @@ -25,9 +26,3 @@ -open Tezos_protocol_015_PtLimaPt_parameters -open Tezos_015_PtLimaPt_test_helpers -open Tezos_base_test_helpers)) - -(rule - (alias runtest) - (package tezos-protocol-015-PtLimaPt-tests) - (deps (glob_files wasm_kernel/*.wasm)) - (action (run %{dep:./main.exe}))) diff --git a/src/proto_015_PtLimaPt/lib_protocol/test/integration/gas/dune b/src/proto_015_PtLimaPt/lib_protocol/test/integration/gas/dune index e6d1eefaac399adb67b8d6ca1d8c8889641d7cdb..22503a5512b25425e71798ed6ab890a6491abccd 100644 --- a/src/proto_015_PtLimaPt/lib_protocol/test/integration/gas/dune +++ b/src/proto_015_PtLimaPt/lib_protocol/test/integration/gas/dune @@ -1,8 +1,9 @@ ; This file was automatically generated, do not edit. ; Edit file manifest/main.ml instead. -(executable +(test (name main) + (package tezos-protocol-015-PtLimaPt-tests) (libraries alcotest-lwt tezos-base @@ -19,8 +20,3 @@ -open Tezos_protocol_015_PtLimaPt -open Tezos_015_PtLimaPt_test_helpers -open Tezos_base_test_helpers)) - -(rule - (alias runtest) - (package tezos-protocol-015-PtLimaPt-tests) - (action (run %{dep:./main.exe}))) diff --git a/src/proto_015_PtLimaPt/lib_protocol/test/integration/michelson/dune b/src/proto_015_PtLimaPt/lib_protocol/test/integration/michelson/dune index 07bfd99420e7c9f9eebbfbcd9e86bbb8880bf058..8d71c9b8bf199b7aa5d0b0453ace4e00c08781b6 100644 --- a/src/proto_015_PtLimaPt/lib_protocol/test/integration/michelson/dune +++ b/src/proto_015_PtLimaPt/lib_protocol/test/integration/michelson/dune @@ -1,8 +1,9 @@ ; This file was automatically generated, do not edit. ; Edit file manifest/main.ml instead. -(executable +(test (name main) + (package tezos-protocol-015-PtLimaPt-tests) (libraries alcotest-lwt tezos-base @@ -31,12 +32,3 @@ -open Tezos_benchmark_015_PtLimaPt -open Tezos_benchmark_type_inference_015_PtLimaPt -open Tezos_protocol_plugin_015_PtLimaPt)) - -(rule - (alias runtest) - (package tezos-protocol-015-PtLimaPt-tests) - (deps - (glob_files contracts/*) - (glob_files patched_contracts/*) - (glob_files_rec ../../../../../../michelson_test_scripts/*)) - (action (run %{dep:./main.exe}))) diff --git a/src/proto_015_PtLimaPt/lib_protocol/test/integration/operations/dune b/src/proto_015_PtLimaPt/lib_protocol/test/integration/operations/dune index 25d5aff3515af727be51bf4cd90458c40cfa6116..4d724dcc20a1071d7438301f7ccfc76aaa87072b 100644 --- a/src/proto_015_PtLimaPt/lib_protocol/test/integration/operations/dune +++ b/src/proto_015_PtLimaPt/lib_protocol/test/integration/operations/dune @@ -42,8 +42,10 @@ test_zk_rollup test_tx_rollup)) -(executable +(test + (enabled_if (not %{env:CI=true})) (name main) + (package tezos-protocol-015-PtLimaPt-tests) (libraries src_proto_015_PtLimaPt_lib_protocol_test_integration_operations_tezt_lib tezt) @@ -52,12 +54,6 @@ (:include %{workspace_root}/macos-link-flags.sexp)) (modules main)) -(rule - (alias runtezt) - (package tezos-protocol-015-PtLimaPt-tests) - (deps (glob_files contracts/*)) - (action (run %{dep:./main.exe}))) - (rule (targets main.ml) (action (with-stdout-to %{targets} (echo "let () = Tezt.Test.run ()")))) diff --git a/src/proto_015_PtLimaPt/lib_protocol/test/integration/validate/dune b/src/proto_015_PtLimaPt/lib_protocol/test/integration/validate/dune index 89205ade0c33e6fb48d0fbd841afc1516a047fe5..5fc4e36de5daa84f52b5bdf797dfafde0c91f867 100644 --- a/src/proto_015_PtLimaPt/lib_protocol/test/integration/validate/dune +++ b/src/proto_015_PtLimaPt/lib_protocol/test/integration/validate/dune @@ -1,8 +1,9 @@ ; This file was automatically generated, do not edit. ; Edit file manifest/main.ml instead. -(executable +(test (name main) + (package tezos-protocol-015-PtLimaPt-tests) (libraries alcotest-lwt tezos-base @@ -26,8 +27,3 @@ -open Tezos_015_PtLimaPt_test_helpers -open Tezos_base_test_helpers -open Tezos_protocol_plugin_015_PtLimaPt)) - -(rule - (alias runtest) - (package tezos-protocol-015-PtLimaPt-tests) - (action (run %{dep:./main.exe}))) diff --git a/src/proto_015_PtLimaPt/lib_protocol/test/pbt/dune b/src/proto_015_PtLimaPt/lib_protocol/test/pbt/dune index 6098ee2672a711c862161e81382dfddf08953a82..d289d92eab19c4f7e489cd8ad8ee8e625bbb0942 100644 --- a/src/proto_015_PtLimaPt/lib_protocol/test/pbt/dune +++ b/src/proto_015_PtLimaPt/lib_protocol/test/pbt/dune @@ -48,8 +48,10 @@ test_zk_rollup_encoding test_compare_operations)) -(executable +(test + (enabled_if (not %{env:CI=true})) (name main) + (package tezos-protocol-015-PtLimaPt-tests) (libraries src_proto_015_PtLimaPt_lib_protocol_test_pbt_tezt_lib tezt) @@ -58,11 +60,6 @@ (:include %{workspace_root}/macos-link-flags.sexp)) (modules main)) -(rule - (alias runtezt) - (package tezos-protocol-015-PtLimaPt-tests) - (action (run %{dep:./main.exe}))) - (rule (targets main.ml) (action (with-stdout-to %{targets} (echo "let () = Tezt.Test.run ()")))) diff --git a/src/proto_015_PtLimaPt/lib_protocol/test/regression/dune b/src/proto_015_PtLimaPt/lib_protocol/test/regression/dune index 74d3f35aa9416c6900187d1ef4a46f101f77aee8..067ab9de96e665c464ea9445c3cd2e34b6607d66 100644 --- a/src/proto_015_PtLimaPt/lib_protocol/test/regression/dune +++ b/src/proto_015_PtLimaPt/lib_protocol/test/regression/dune @@ -27,8 +27,10 @@ -open Tezos_micheline) (modules test_logging)) -(executable +(test + (enabled_if (not %{env:CI=true})) (name main) + (package tezos-protocol-015-PtLimaPt-tests) (libraries src_proto_015_PtLimaPt_lib_protocol_test_regression_tezt_lib tezt) @@ -37,14 +39,6 @@ (:include %{workspace_root}/macos-link-flags.sexp)) (modules main)) -(rule - (alias runtezt) - (package tezos-protocol-015-PtLimaPt-tests) - (deps - (glob_files contracts/*.tz) - (glob_files expected/test_logging.ml/*.out)) - (action (run %{dep:./main.exe}))) - (rule (targets main.ml) (action (with-stdout-to %{targets} (echo "let () = Tezt.Test.run ()")))) diff --git a/src/proto_015_PtLimaPt/lib_protocol/test/unit/dune b/src/proto_015_PtLimaPt/lib_protocol/test/unit/dune index beab42e994f8d94d4f861a7ab3f258785c4e9eef..13043b4fc4a1b46b3c92607c6bed90396a8e5f9f 100644 --- a/src/proto_015_PtLimaPt/lib_protocol/test/unit/dune +++ b/src/proto_015_PtLimaPt/lib_protocol/test/unit/dune @@ -1,7 +1,7 @@ ; This file was automatically generated, do not edit. ; Edit file manifest/main.ml instead. -(executable +(test (name main) (libraries tezos-base diff --git a/src/proto_015_PtLimaPt/lib_tx_rollup/dune b/src/proto_015_PtLimaPt/lib_tx_rollup/dune index 337fa04d0e65d1a98910d9baea39254c44bce5e7..60bb1b166c0d0a202d8ee52a8be5040202b20fac 100644 --- a/src/proto_015_PtLimaPt/lib_tx_rollup/dune +++ b/src/proto_015_PtLimaPt/lib_tx_rollup/dune @@ -27,7 +27,7 @@ tezos-workers tezos-protocol-plugin-015-PtLimaPt tezos-injector-015-PtLimaPt) - (inline_tests (flags -verbose) (modes native)) + (inline_tests (flags -verbose) (modes best)) (preprocess (pps ppx_expect)) (library_flags (:standard -linkall)) (flags diff --git a/src/proto_016_PtMumbai/lib_benchmark/lib_benchmark_type_inference/test/dune b/src/proto_016_PtMumbai/lib_benchmark/lib_benchmark_type_inference/test/dune index 402aaff060596b148f80c2645e371909632e7d81..9e7e71b1798a7ae68c3da12b2191a374d8d25f16 100644 --- a/src/proto_016_PtMumbai/lib_benchmark/lib_benchmark_type_inference/test/dune +++ b/src/proto_016_PtMumbai/lib_benchmark/lib_benchmark_type_inference/test/dune @@ -1,8 +1,9 @@ ; This file was automatically generated, do not edit. ; Edit file manifest/main.ml instead. -(executables +(tests (names test_uf test_inference) + (package tezos-benchmark-type-inference-016-PtMumbai) (libraries tezos-micheline tezos-micheline-rewriting @@ -17,13 +18,3 @@ (:standard) -open Tezos_micheline -open Tezos_benchmark_type_inference_016_PtMumbai)) - -(rule - (alias runtest) - (package tezos-benchmark-type-inference-016-PtMumbai) - (action (run %{dep:./test_uf.exe}))) - -(rule - (alias runtest) - (package tezos-benchmark-type-inference-016-PtMumbai) - (action (run %{dep:./test_inference.exe}))) diff --git a/src/proto_016_PtMumbai/lib_benchmark/test/dune b/src/proto_016_PtMumbai/lib_benchmark/test/dune index 2bd70d7de9e19aa943312b7f086b6c19175c3d07..24f8cb1a987e799e5cf21360a21d0e742ee144ed 100644 --- a/src/proto_016_PtMumbai/lib_benchmark/test/dune +++ b/src/proto_016_PtMumbai/lib_benchmark/test/dune @@ -1,7 +1,7 @@ ; This file was automatically generated, do not edit. ; Edit file manifest/main.ml instead. -(executables +(tests (names test_sampling_data test_sampling_code diff --git a/src/proto_016_PtMumbai/lib_client/dune b/src/proto_016_PtMumbai/lib_client/dune index 2afbaa862608ff043032e86cd58db52b8c1e9d8d..f9a9b4ee93252d6ca1f0e5c99b0e7f7348ea13f1 100644 --- a/src/proto_016_PtMumbai/lib_client/dune +++ b/src/proto_016_PtMumbai/lib_client/dune @@ -19,7 +19,7 @@ tezos-rpc tezos-smart-rollup-016-PtMumbai uri) - (inline_tests (flags -verbose) (modes native)) + (inline_tests (flags -verbose) (modes best)) (preprocess (pps ppx_expect)) (library_flags (:standard -linkall)) (flags diff --git a/src/proto_016_PtMumbai/lib_client/test/dune b/src/proto_016_PtMumbai/lib_client/test/dune index 14207a3e4b97a9f8ada933874266733d682c1d7a..eab9344c685940405a7b215522800811425394b5 100644 --- a/src/proto_016_PtMumbai/lib_client/test/dune +++ b/src/proto_016_PtMumbai/lib_client/test/dune @@ -33,8 +33,10 @@ test_client_proto_context test_proxy)) -(executable +(test + (enabled_if (not %{env:CI=true})) (name main) + (package tezos-client-016-PtMumbai) (libraries src_proto_016_PtMumbai_lib_client_test_tezt_lib tezt) @@ -43,11 +45,6 @@ (:include %{workspace_root}/macos-link-flags.sexp)) (modules main)) -(rule - (alias runtezt) - (package tezos-client-016-PtMumbai) - (action (run %{dep:./main.exe}))) - (rule (targets main.ml) (action (with-stdout-to %{targets} (echo "let () = Tezt.Test.run ()")))) diff --git a/src/proto_016_PtMumbai/lib_dal/dune b/src/proto_016_PtMumbai/lib_dal/dune index 8af1582a7d991e7a1da6b0d4a1addef1e5c69732..b22d4a8665bb761569d7e486d7605a9d740973d3 100644 --- a/src/proto_016_PtMumbai/lib_dal/dune +++ b/src/proto_016_PtMumbai/lib_dal/dune @@ -15,7 +15,7 @@ tezos-embedded-protocol-016-PtMumbai tezos-layer2-utils-016-PtMumbai tezos-protocol-016-PtMumbai) - (inline_tests (flags -verbose) (modes native)) + (inline_tests (flags -verbose) (modes best)) (preprocess (pps ppx_expect)) (library_flags (:standard -linkall)) (flags diff --git a/src/proto_016_PtMumbai/lib_dal/test/dune b/src/proto_016_PtMumbai/lib_dal/test/dune index cb711d9608d92afcb9f033d796dd912b197f0961..0e9099d10bc70a06b913b22d78f110c8ad3c6189 100644 --- a/src/proto_016_PtMumbai/lib_dal/test/dune +++ b/src/proto_016_PtMumbai/lib_dal/test/dune @@ -1,8 +1,9 @@ ; This file was automatically generated, do not edit. ; Edit file manifest/main.ml instead. -(executable +(test (name main) + (package tezos-dal-016-PtMumbai) (libraries tezos-base tezos-dal-016-PtMumbai @@ -21,8 +22,3 @@ -open Tezos_protocol_016_PtMumbai -open Tezos_base_test_helpers -open Tezos_016_PtMumbai_test_helpers)) - -(rule - (alias runtest) - (package tezos-dal-016-PtMumbai) - (action (run %{dep:./main.exe}))) diff --git a/src/proto_016_PtMumbai/lib_delegate/test/dune b/src/proto_016_PtMumbai/lib_delegate/test/dune index c91d74a135a8492dd47ec648035ee87f41a079c7..882118832ce2eb5b49643dc6bc73fbf1e4c0418f 100644 --- a/src/proto_016_PtMumbai/lib_delegate/test/dune +++ b/src/proto_016_PtMumbai/lib_delegate/test/dune @@ -33,8 +33,10 @@ -open Octez_alcotezt) (modules test_scenario)) -(executable +(test + (enabled_if (not %{env:CI=true})) (name main) + (package tezos-baking-016-PtMumbai) (libraries src_proto_016_PtMumbai_lib_delegate_test_tezt_lib tezt) @@ -43,11 +45,6 @@ (:include %{workspace_root}/macos-link-flags.sexp)) (modules main)) -(rule - (alias runtezt) - (package tezos-baking-016-PtMumbai) - (action (run %{dep:./main.exe}))) - (rule (targets main.ml) (action (with-stdout-to %{targets} (echo "let () = Tezt.Test.run ()")))) diff --git a/src/proto_016_PtMumbai/lib_delegate/test/tenderbrute/dune b/src/proto_016_PtMumbai/lib_delegate/test/tenderbrute/dune index b00c442c989e9b61041a51f097f49cd5bc2e08e4..dedaad5aa9d39f41e4e307e539bc61aa4d08329d 100644 --- a/src/proto_016_PtMumbai/lib_delegate/test/tenderbrute/dune +++ b/src/proto_016_PtMumbai/lib_delegate/test/tenderbrute/dune @@ -1,7 +1,7 @@ ; This file was automatically generated, do not edit. ; Edit file manifest/main.ml instead. -(executable +(test (name tenderbrute_main) (libraries tezos-base diff --git a/src/proto_016_PtMumbai/lib_layer2_utils/dune b/src/proto_016_PtMumbai/lib_layer2_utils/dune index 6a91309350accc0b15ed46551b9f9403dbafd77b..bf8453bbd652f92034af741282411e54768b2db2 100644 --- a/src/proto_016_PtMumbai/lib_layer2_utils/dune +++ b/src/proto_016_PtMumbai/lib_layer2_utils/dune @@ -9,7 +9,7 @@ tezos-base tezos-protocol-016-PtMumbai tezos-client-016-PtMumbai) - (inline_tests (flags -verbose) (modes native)) + (inline_tests (flags -verbose) (modes best)) (preprocess (pps ppx_expect)) (library_flags (:standard -linkall)) (flags diff --git a/src/proto_016_PtMumbai/lib_plugin/test/dune b/src/proto_016_PtMumbai/lib_plugin/test/dune index f7196b2835112752859335782c6bdc542b7279b0..bbcb4240001f85e03f4fa9df77b8580bd700b584 100644 --- a/src/proto_016_PtMumbai/lib_plugin/test/dune +++ b/src/proto_016_PtMumbai/lib_plugin/test/dune @@ -42,8 +42,10 @@ test_utils generators)) -(executable +(test + (enabled_if (not %{env:CI=true})) (name main) + (package tezos-protocol-plugin-016-PtMumbai-tests) (libraries src_proto_016_PtMumbai_lib_plugin_test_tezt_lib tezt) @@ -52,11 +54,6 @@ (:include %{workspace_root}/macos-link-flags.sexp)) (modules main)) -(rule - (alias runtezt) - (package tezos-protocol-plugin-016-PtMumbai-tests) - (action (run %{dep:./main.exe}))) - (rule (targets main.ml) (action (with-stdout-to %{targets} (echo "let () = Tezt.Test.run ()")))) diff --git a/src/proto_016_PtMumbai/lib_protocol/test/integration/consensus/dune b/src/proto_016_PtMumbai/lib_protocol/test/integration/consensus/dune index cca2db9985b034149e06796c0495022bc7f2960a..a41164082ac46fb024c9c3530b2566db8881d784 100644 --- a/src/proto_016_PtMumbai/lib_protocol/test/integration/consensus/dune +++ b/src/proto_016_PtMumbai/lib_protocol/test/integration/consensus/dune @@ -1,8 +1,9 @@ ; This file was automatically generated, do not edit. ; Edit file manifest/main.ml instead. -(executable +(test (name main) + (package tezos-protocol-016-PtMumbai-tests) (libraries alcotest-lwt tezos-base @@ -23,8 +24,3 @@ -open Tezos_base_test_helpers -open Tezos_protocol_016_PtMumbai_parameters -open Tezos_protocol_plugin_016_PtMumbai)) - -(rule - (alias runtest) - (package tezos-protocol-016-PtMumbai-tests) - (action (run %{dep:./main.exe}))) diff --git a/src/proto_016_PtMumbai/lib_protocol/test/integration/dune b/src/proto_016_PtMumbai/lib_protocol/test/integration/dune index dfc1915996219da0d68c07995bb79b8a4a2b2c1d..2e687b48421b9835e4df86f4b946de651eec8e81 100644 --- a/src/proto_016_PtMumbai/lib_protocol/test/integration/dune +++ b/src/proto_016_PtMumbai/lib_protocol/test/integration/dune @@ -1,8 +1,9 @@ ; This file was automatically generated, do not edit. ; Edit file manifest/main.ml instead. -(executable +(test (name main) + (package tezos-protocol-016-PtMumbai-tests) (libraries tezt tezos-context @@ -25,9 +26,3 @@ -open Tezos_protocol_016_PtMumbai_parameters -open Tezos_016_PtMumbai_test_helpers -open Tezos_base_test_helpers)) - -(rule - (alias runtest) - (package tezos-protocol-016-PtMumbai-tests) - (deps (glob_files wasm_kernel/*.wasm)) - (action (run %{dep:./main.exe}))) diff --git a/src/proto_016_PtMumbai/lib_protocol/test/integration/gas/dune b/src/proto_016_PtMumbai/lib_protocol/test/integration/gas/dune index b7f8e202695e51fb0423ba7fc868bd8d2a38217f..a28ddd1bd73daea05923f4503514ac23f4a67c41 100644 --- a/src/proto_016_PtMumbai/lib_protocol/test/integration/gas/dune +++ b/src/proto_016_PtMumbai/lib_protocol/test/integration/gas/dune @@ -1,8 +1,9 @@ ; This file was automatically generated, do not edit. ; Edit file manifest/main.ml instead. -(executable +(test (name main) + (package tezos-protocol-016-PtMumbai-tests) (libraries alcotest-lwt tezos-base @@ -19,8 +20,3 @@ -open Tezos_protocol_016_PtMumbai -open Tezos_016_PtMumbai_test_helpers -open Tezos_base_test_helpers)) - -(rule - (alias runtest) - (package tezos-protocol-016-PtMumbai-tests) - (action (run %{dep:./main.exe}))) diff --git a/src/proto_016_PtMumbai/lib_protocol/test/integration/michelson/dune b/src/proto_016_PtMumbai/lib_protocol/test/integration/michelson/dune index b8d464a6c70bf6c13472294280cc2b4f131a8ce4..d36ecc8d02f915877fbc5686327cfb747314db30 100644 --- a/src/proto_016_PtMumbai/lib_protocol/test/integration/michelson/dune +++ b/src/proto_016_PtMumbai/lib_protocol/test/integration/michelson/dune @@ -1,8 +1,9 @@ ; This file was automatically generated, do not edit. ; Edit file manifest/main.ml instead. -(executable +(test (name main) + (package tezos-protocol-016-PtMumbai-tests) (libraries alcotest-lwt tezos-base @@ -31,12 +32,3 @@ -open Tezos_benchmark_016_PtMumbai -open Tezos_benchmark_type_inference_016_PtMumbai -open Tezos_protocol_plugin_016_PtMumbai)) - -(rule - (alias runtest) - (package tezos-protocol-016-PtMumbai-tests) - (deps - (glob_files contracts/*) - (glob_files patched_contracts/*) - (glob_files_rec ../../../../../../michelson_test_scripts/*)) - (action (run %{dep:./main.exe}))) diff --git a/src/proto_016_PtMumbai/lib_protocol/test/integration/operations/dune b/src/proto_016_PtMumbai/lib_protocol/test/integration/operations/dune index c87f5ed32461ac776d031927303ed6a403ef5c1d..57ef7510d72fd184aa3f48decebb00725f0120c3 100644 --- a/src/proto_016_PtMumbai/lib_protocol/test/integration/operations/dune +++ b/src/proto_016_PtMumbai/lib_protocol/test/integration/operations/dune @@ -43,8 +43,10 @@ test_transfer_ticket test_tx_rollup)) -(executable +(test + (enabled_if (not %{env:CI=true})) (name main) + (package tezos-protocol-016-PtMumbai-tests) (libraries src_proto_016_PtMumbai_lib_protocol_test_integration_operations_tezt_lib tezt) @@ -53,12 +55,6 @@ (:include %{workspace_root}/macos-link-flags.sexp)) (modules main)) -(rule - (alias runtezt) - (package tezos-protocol-016-PtMumbai-tests) - (deps (glob_files contracts/*)) - (action (run %{dep:./main.exe}))) - (rule (targets main.ml) (action (with-stdout-to %{targets} (echo "let () = Tezt.Test.run ()")))) diff --git a/src/proto_016_PtMumbai/lib_protocol/test/integration/validate/dune b/src/proto_016_PtMumbai/lib_protocol/test/integration/validate/dune index aa307be1f4650baec18b9d405952c9a2828e7205..e6b4390df305c813ca97f4fe1a2a50880b925dc8 100644 --- a/src/proto_016_PtMumbai/lib_protocol/test/integration/validate/dune +++ b/src/proto_016_PtMumbai/lib_protocol/test/integration/validate/dune @@ -1,8 +1,9 @@ ; This file was automatically generated, do not edit. ; Edit file manifest/main.ml instead. -(executable +(test (name main) + (package tezos-protocol-016-PtMumbai-tests) (libraries alcotest-lwt tezos-base @@ -26,8 +27,3 @@ -open Tezos_016_PtMumbai_test_helpers -open Tezos_base_test_helpers -open Tezos_protocol_plugin_016_PtMumbai)) - -(rule - (alias runtest) - (package tezos-protocol-016-PtMumbai-tests) - (action (run %{dep:./main.exe}))) diff --git a/src/proto_016_PtMumbai/lib_protocol/test/pbt/dune b/src/proto_016_PtMumbai/lib_protocol/test/pbt/dune index 2e2660dd75b531370a069467275f9ee61d7ad444..17607be2e0bfc989fadf63f30b0bacf2f752bb51 100644 --- a/src/proto_016_PtMumbai/lib_protocol/test/pbt/dune +++ b/src/proto_016_PtMumbai/lib_protocol/test/pbt/dune @@ -60,8 +60,10 @@ test_operation_encoding test_bytes_conversion)) -(executable +(test + (enabled_if (not %{env:CI=true})) (name main) + (package tezos-protocol-016-PtMumbai-tests) (libraries src_proto_016_PtMumbai_lib_protocol_test_pbt_tezt_lib tezt) @@ -70,11 +72,6 @@ (:include %{workspace_root}/macos-link-flags.sexp)) (modules main)) -(rule - (alias runtezt) - (package tezos-protocol-016-PtMumbai-tests) - (action (run %{dep:./main.exe}))) - (rule (targets main.ml) (action (with-stdout-to %{targets} (echo "let () = Tezt.Test.run ()")))) diff --git a/src/proto_016_PtMumbai/lib_protocol/test/regression/dune b/src/proto_016_PtMumbai/lib_protocol/test/regression/dune index 0f6473eeaba528c182e5dbbbade3ec5c989a5353..fa8573dc461fcf486aafe48c71d4f51b9bc603f0 100644 --- a/src/proto_016_PtMumbai/lib_protocol/test/regression/dune +++ b/src/proto_016_PtMumbai/lib_protocol/test/regression/dune @@ -27,8 +27,10 @@ -open Tezos_micheline) (modules test_logging)) -(executable +(test + (enabled_if (not %{env:CI=true})) (name main) + (package tezos-protocol-016-PtMumbai-tests) (libraries src_proto_016_PtMumbai_lib_protocol_test_regression_tezt_lib tezt) @@ -37,14 +39,6 @@ (:include %{workspace_root}/macos-link-flags.sexp)) (modules main)) -(rule - (alias runtezt) - (package tezos-protocol-016-PtMumbai-tests) - (deps - (glob_files contracts/*.tz) - (glob_files expected/test_logging.ml/*.out)) - (action (run %{dep:./main.exe}))) - (rule (targets main.ml) (action (with-stdout-to %{targets} (echo "let () = Tezt.Test.run ()")))) diff --git a/src/proto_016_PtMumbai/lib_protocol/test/unit/dune b/src/proto_016_PtMumbai/lib_protocol/test/unit/dune index 8c380725b8b1352c20a094590d524195ab837128..db3fa73ba21ea4e0a89b5ca6ae7b3081101bd96e 100644 --- a/src/proto_016_PtMumbai/lib_protocol/test/unit/dune +++ b/src/proto_016_PtMumbai/lib_protocol/test/unit/dune @@ -1,7 +1,7 @@ ; This file was automatically generated, do not edit. ; Edit file manifest/main.ml instead. -(executable +(test (name main) (libraries tezos-base diff --git a/src/proto_016_PtMumbai/lib_sc_rollup/dune b/src/proto_016_PtMumbai/lib_sc_rollup/dune index 4de3285663a97a0d1854c862331d3540f4319182..eb9f39775e94dad0ed530de932a3ed0bef020eba 100644 --- a/src/proto_016_PtMumbai/lib_sc_rollup/dune +++ b/src/proto_016_PtMumbai/lib_sc_rollup/dune @@ -8,7 +8,7 @@ (libraries tezos-base tezos-protocol-016-PtMumbai) - (inline_tests (flags -verbose) (modes native)) + (inline_tests (flags -verbose) (modes best)) (preprocess (pps ppx_expect)) (library_flags (:standard -linkall)) (flags diff --git a/src/proto_016_PtMumbai/lib_sc_rollup_layer2/dune b/src/proto_016_PtMumbai/lib_sc_rollup_layer2/dune index 3e1e19641b52f11bfe4cf738167ab76a80017dea..c9e04f5934d330137f9830d63776a28c07516ebc 100644 --- a/src/proto_016_PtMumbai/lib_sc_rollup_layer2/dune +++ b/src/proto_016_PtMumbai/lib_sc_rollup_layer2/dune @@ -9,7 +9,7 @@ tezos-base tezos-protocol-016-PtMumbai octez-injector) - (inline_tests (flags -verbose) (modes native)) + (inline_tests (flags -verbose) (modes best)) (preprocess (pps ppx_expect)) (library_flags (:standard -linkall)) (flags diff --git a/src/proto_alpha/lib_benchmark/lib_benchmark_type_inference/test/dune b/src/proto_alpha/lib_benchmark/lib_benchmark_type_inference/test/dune index 80cc7e281ace3c09ec292cf07a4d7d0ed6e10ead..2e901330046974d8c8d8808810fc7c3f83d53194 100644 --- a/src/proto_alpha/lib_benchmark/lib_benchmark_type_inference/test/dune +++ b/src/proto_alpha/lib_benchmark/lib_benchmark_type_inference/test/dune @@ -1,8 +1,9 @@ ; This file was automatically generated, do not edit. ; Edit file manifest/main.ml instead. -(executables +(tests (names test_uf test_inference) + (package tezos-benchmark-type-inference-alpha) (libraries tezos-micheline tezos-micheline-rewriting @@ -17,13 +18,3 @@ (:standard) -open Tezos_micheline -open Tezos_benchmark_type_inference_alpha)) - -(rule - (alias runtest) - (package tezos-benchmark-type-inference-alpha) - (action (run %{dep:./test_uf.exe}))) - -(rule - (alias runtest) - (package tezos-benchmark-type-inference-alpha) - (action (run %{dep:./test_inference.exe}))) diff --git a/src/proto_alpha/lib_benchmark/test/dune b/src/proto_alpha/lib_benchmark/test/dune index c180fd157a6b7b3925c741af8213b9f970312490..3b91c927f47ef0b06d964cee9229782644b252de 100644 --- a/src/proto_alpha/lib_benchmark/test/dune +++ b/src/proto_alpha/lib_benchmark/test/dune @@ -1,7 +1,7 @@ ; This file was automatically generated, do not edit. ; Edit file manifest/main.ml instead. -(executables +(tests (names test_sampling_data test_sampling_code diff --git a/src/proto_alpha/lib_client/dune b/src/proto_alpha/lib_client/dune index 3668f2e00086ac0c384662eb21ba6a3b9f402a6f..b42e9eb038dd4114758cbaf4d121e45693bff33e 100644 --- a/src/proto_alpha/lib_client/dune +++ b/src/proto_alpha/lib_client/dune @@ -19,7 +19,7 @@ tezos-rpc tezos-smart-rollup-alpha uri) - (inline_tests (flags -verbose) (modes native)) + (inline_tests (flags -verbose) (modes best)) (preprocess (pps ppx_expect)) (library_flags (:standard -linkall)) (flags diff --git a/src/proto_alpha/lib_client/test/dune b/src/proto_alpha/lib_client/test/dune index 7a2be4783c36683a673735c4f9b74d5bb5aa70d8..44458a54bf1596fabdab9c56578b30eecfe44b03 100644 --- a/src/proto_alpha/lib_client/test/dune +++ b/src/proto_alpha/lib_client/test/dune @@ -33,8 +33,10 @@ test_client_proto_context test_proxy)) -(executable +(test + (enabled_if (not %{env:CI=true})) (name main) + (package tezos-client-alpha) (libraries src_proto_alpha_lib_client_test_tezt_lib tezt) @@ -43,11 +45,6 @@ (:include %{workspace_root}/macos-link-flags.sexp)) (modules main)) -(rule - (alias runtezt) - (package tezos-client-alpha) - (action (run %{dep:./main.exe}))) - (rule (targets main.ml) (action (with-stdout-to %{targets} (echo "let () = Tezt.Test.run ()")))) diff --git a/src/proto_alpha/lib_dac/dune b/src/proto_alpha/lib_dac/dune index d95b4442321617ec350fe591280630f714689126..5ab084367b9adfef58aac26bb879be98bc6706c1 100644 --- a/src/proto_alpha/lib_dac/dune +++ b/src/proto_alpha/lib_dac/dune @@ -13,7 +13,7 @@ tezos-client-alpha tezos-embedded-protocol-alpha tezos-protocol-alpha) - (inline_tests (flags -verbose) (modes native)) + (inline_tests (flags -verbose) (modes best)) (preprocess (pps ppx_expect)) (library_flags (:standard -linkall)) (flags diff --git a/src/proto_alpha/lib_dac/test/dune b/src/proto_alpha/lib_dac/test/dune index 1240a9a3b3678ca2086f38887b01c2c9667846c8..178e585b73e216374ff2a8d7b27fac16357b065f 100644 --- a/src/proto_alpha/lib_dac/test/dune +++ b/src/proto_alpha/lib_dac/test/dune @@ -1,8 +1,9 @@ ; This file was automatically generated, do not edit. ; Edit file manifest/main.ml instead. -(executable +(test (name main) + (package tezos-dac-alpha) (libraries tezos-base tezos-dac-alpha @@ -23,8 +24,3 @@ -open Tezos_base_test_helpers -open Tezos_alpha_test_helpers -open Tezos_dac_node_lib)) - -(rule - (alias runtest) - (package tezos-dac-alpha) - (action (run %{dep:./main.exe}))) diff --git a/src/proto_alpha/lib_dal/dune b/src/proto_alpha/lib_dal/dune index e2a3b66aa0f600003c3726ed20d9d93b5b13beef..a7cda1cbf86832800041a9b9607cf4fea87789c7 100644 --- a/src/proto_alpha/lib_dal/dune +++ b/src/proto_alpha/lib_dal/dune @@ -15,7 +15,7 @@ tezos-embedded-protocol-alpha tezos-layer2-utils-alpha tezos-protocol-alpha) - (inline_tests (flags -verbose) (modes native)) + (inline_tests (flags -verbose) (modes best)) (preprocess (pps ppx_expect)) (library_flags (:standard -linkall)) (flags diff --git a/src/proto_alpha/lib_dal/test/dune b/src/proto_alpha/lib_dal/test/dune index 101de0486cc48e89bbe0a16680241f5808baac0f..cf66022ea3553a4da1061abe33717fde7fcd94ee 100644 --- a/src/proto_alpha/lib_dal/test/dune +++ b/src/proto_alpha/lib_dal/test/dune @@ -1,8 +1,9 @@ ; This file was automatically generated, do not edit. ; Edit file manifest/main.ml instead. -(executable +(test (name main) + (package tezos-dal-alpha) (libraries tezos-base tezos-dal-alpha @@ -21,8 +22,3 @@ -open Tezos_protocol_alpha -open Tezos_base_test_helpers -open Tezos_alpha_test_helpers)) - -(rule - (alias runtest) - (package tezos-dal-alpha) - (action (run %{dep:./main.exe}))) diff --git a/src/proto_alpha/lib_delegate/test/dune b/src/proto_alpha/lib_delegate/test/dune index 56bf77b830c96df1e528b4410e207c37d9ebc05f..abd21c8584846be7ce35aaabf6e3d2bb261c0721 100644 --- a/src/proto_alpha/lib_delegate/test/dune +++ b/src/proto_alpha/lib_delegate/test/dune @@ -33,8 +33,10 @@ -open Octez_alcotezt) (modules test_scenario)) -(executable +(test + (enabled_if (not %{env:CI=true})) (name main) + (package tezos-baking-alpha) (libraries src_proto_alpha_lib_delegate_test_tezt_lib tezt) @@ -43,11 +45,6 @@ (:include %{workspace_root}/macos-link-flags.sexp)) (modules main)) -(rule - (alias runtezt) - (package tezos-baking-alpha) - (action (run %{dep:./main.exe}))) - (rule (targets main.ml) (action (with-stdout-to %{targets} (echo "let () = Tezt.Test.run ()")))) diff --git a/src/proto_alpha/lib_delegate/test/tenderbrute/dune b/src/proto_alpha/lib_delegate/test/tenderbrute/dune index 6df2252f2558db4ef0c4e0a41165238af028553e..dde3c5958aa9a734a101c8e9b154f180640abc52 100644 --- a/src/proto_alpha/lib_delegate/test/tenderbrute/dune +++ b/src/proto_alpha/lib_delegate/test/tenderbrute/dune @@ -1,7 +1,7 @@ ; This file was automatically generated, do not edit. ; Edit file manifest/main.ml instead. -(executable +(test (name tenderbrute_main) (libraries tezos-base diff --git a/src/proto_alpha/lib_layer2_utils/dune b/src/proto_alpha/lib_layer2_utils/dune index 0caa6c78b11b10abf23ede5dcce4f0072ed689db..a7356f0a97b2e8097286a9072519cd601415a9cf 100644 --- a/src/proto_alpha/lib_layer2_utils/dune +++ b/src/proto_alpha/lib_layer2_utils/dune @@ -9,7 +9,7 @@ tezos-base tezos-protocol-alpha tezos-client-alpha) - (inline_tests (flags -verbose) (modes native)) + (inline_tests (flags -verbose) (modes best)) (preprocess (pps ppx_expect)) (library_flags (:standard -linkall)) (flags diff --git a/src/proto_alpha/lib_plugin/test/dune b/src/proto_alpha/lib_plugin/test/dune index 7f8dd0de25635b33432a2da6df2b5d9bdcdfa7f0..01d9e5ea3de41b53356443aa69e55a01295210cf 100644 --- a/src/proto_alpha/lib_plugin/test/dune +++ b/src/proto_alpha/lib_plugin/test/dune @@ -42,8 +42,10 @@ test_utils generators)) -(executable +(test + (enabled_if (not %{env:CI=true})) (name main) + (package tezos-protocol-plugin-alpha-tests) (libraries src_proto_alpha_lib_plugin_test_tezt_lib tezt) @@ -52,11 +54,6 @@ (:include %{workspace_root}/macos-link-flags.sexp)) (modules main)) -(rule - (alias runtezt) - (package tezos-protocol-plugin-alpha-tests) - (action (run %{dep:./main.exe}))) - (rule (targets main.ml) (action (with-stdout-to %{targets} (echo "let () = Tezt.Test.run ()")))) diff --git a/src/proto_alpha/lib_protocol/test/integration/consensus/dune b/src/proto_alpha/lib_protocol/test/integration/consensus/dune index 7c544a7fb9e8bb7f43d1523407a0e59f6ffa23d3..2f915c415bdbaa88cb0e708c2ec59a120ccf149a 100644 --- a/src/proto_alpha/lib_protocol/test/integration/consensus/dune +++ b/src/proto_alpha/lib_protocol/test/integration/consensus/dune @@ -1,8 +1,9 @@ ; This file was automatically generated, do not edit. ; Edit file manifest/main.ml instead. -(executable +(test (name main) + (package tezos-protocol-alpha-tests) (libraries alcotest-lwt tezos-base @@ -23,8 +24,3 @@ -open Tezos_base_test_helpers -open Tezos_protocol_alpha_parameters -open Tezos_protocol_plugin_alpha)) - -(rule - (alias runtest) - (package tezos-protocol-alpha-tests) - (action (run %{dep:./main.exe}))) diff --git a/src/proto_alpha/lib_protocol/test/integration/dune b/src/proto_alpha/lib_protocol/test/integration/dune index 076c0eef16fe2460da79f1c4a242c7743ac9b91e..44de25fd6cfed8f0d40498edc2942ca8ff3f69cc 100644 --- a/src/proto_alpha/lib_protocol/test/integration/dune +++ b/src/proto_alpha/lib_protocol/test/integration/dune @@ -1,8 +1,9 @@ ; This file was automatically generated, do not edit. ; Edit file manifest/main.ml instead. -(executable +(test (name main) + (package tezos-protocol-alpha-tests) (libraries tezt tezos-context @@ -25,9 +26,3 @@ -open Tezos_protocol_alpha_parameters -open Tezos_alpha_test_helpers -open Tezos_base_test_helpers)) - -(rule - (alias runtest) - (package tezos-protocol-alpha-tests) - (deps (glob_files wasm_kernel/*.wasm)) - (action (run %{dep:./main.exe}))) diff --git a/src/proto_alpha/lib_protocol/test/integration/gas/dune b/src/proto_alpha/lib_protocol/test/integration/gas/dune index 0615a57c105631d593b0bc87ffc01842a12e74a9..63c773870c037f2b63e2baea9ffcd0d530df2a1d 100644 --- a/src/proto_alpha/lib_protocol/test/integration/gas/dune +++ b/src/proto_alpha/lib_protocol/test/integration/gas/dune @@ -1,8 +1,9 @@ ; This file was automatically generated, do not edit. ; Edit file manifest/main.ml instead. -(executable +(test (name main) + (package tezos-protocol-alpha-tests) (libraries alcotest-lwt tezos-base @@ -19,8 +20,3 @@ -open Tezos_protocol_alpha -open Tezos_alpha_test_helpers -open Tezos_base_test_helpers)) - -(rule - (alias runtest) - (package tezos-protocol-alpha-tests) - (action (run %{dep:./main.exe}))) diff --git a/src/proto_alpha/lib_protocol/test/integration/michelson/dune b/src/proto_alpha/lib_protocol/test/integration/michelson/dune index a724d96f524e3a9d5f010aa40a5355ea3130efbe..17682b9abfb7c16cb3d481e688f1f09a459e81fd 100644 --- a/src/proto_alpha/lib_protocol/test/integration/michelson/dune +++ b/src/proto_alpha/lib_protocol/test/integration/michelson/dune @@ -1,8 +1,9 @@ ; This file was automatically generated, do not edit. ; Edit file manifest/main.ml instead. -(executable +(test (name main) + (package tezos-protocol-alpha-tests) (libraries alcotest-lwt tezos-base @@ -31,12 +32,3 @@ -open Tezos_benchmark_alpha -open Tezos_benchmark_type_inference_alpha -open Tezos_protocol_plugin_alpha)) - -(rule - (alias runtest) - (package tezos-protocol-alpha-tests) - (deps - (glob_files contracts/*) - (glob_files patched_contracts/*) - (glob_files_rec ../../../../../../michelson_test_scripts/*)) - (action (run %{dep:./main.exe}))) diff --git a/src/proto_alpha/lib_protocol/test/integration/operations/dune b/src/proto_alpha/lib_protocol/test/integration/operations/dune index 568b945cfaa7250e59c0af1d83e4b0dd337433f2..28f658ad8f00dde3040316aded0cf72d6f72d3c3 100644 --- a/src/proto_alpha/lib_protocol/test/integration/operations/dune +++ b/src/proto_alpha/lib_protocol/test/integration/operations/dune @@ -41,8 +41,10 @@ test_zk_rollup test_transfer_ticket)) -(executable +(test + (enabled_if (not %{env:CI=true})) (name main) + (package tezos-protocol-alpha-tests) (libraries src_proto_alpha_lib_protocol_test_integration_operations_tezt_lib tezt) @@ -51,12 +53,6 @@ (:include %{workspace_root}/macos-link-flags.sexp)) (modules main)) -(rule - (alias runtezt) - (package tezos-protocol-alpha-tests) - (deps (glob_files contracts/*)) - (action (run %{dep:./main.exe}))) - (rule (targets main.ml) (action (with-stdout-to %{targets} (echo "let () = Tezt.Test.run ()")))) diff --git a/src/proto_alpha/lib_protocol/test/integration/validate/dune b/src/proto_alpha/lib_protocol/test/integration/validate/dune index 25989b2794b814f8663e0b699e68d8cf5162c75b..aacb1d3848b7a1ddac5afbfefe02c74f6735bff3 100644 --- a/src/proto_alpha/lib_protocol/test/integration/validate/dune +++ b/src/proto_alpha/lib_protocol/test/integration/validate/dune @@ -1,8 +1,9 @@ ; This file was automatically generated, do not edit. ; Edit file manifest/main.ml instead. -(executable +(test (name main) + (package tezos-protocol-alpha-tests) (libraries alcotest-lwt tezos-base @@ -26,8 +27,3 @@ -open Tezos_alpha_test_helpers -open Tezos_base_test_helpers -open Tezos_protocol_plugin_alpha)) - -(rule - (alias runtest) - (package tezos-protocol-alpha-tests) - (action (run %{dep:./main.exe}))) diff --git a/src/proto_alpha/lib_protocol/test/pbt/dune b/src/proto_alpha/lib_protocol/test/pbt/dune index 3c8ac4126d059b40deea00475b3b525840fc39a7..8bcc61ac1cefd68770610f59a12a4ee028aa726d 100644 --- a/src/proto_alpha/lib_protocol/test/pbt/dune +++ b/src/proto_alpha/lib_protocol/test/pbt/dune @@ -59,8 +59,10 @@ test_operation_encoding test_bytes_conversion)) -(executable +(test + (enabled_if (not %{env:CI=true})) (name main) + (package tezos-protocol-alpha-tests) (libraries src_proto_alpha_lib_protocol_test_pbt_tezt_lib tezt) @@ -69,11 +71,6 @@ (:include %{workspace_root}/macos-link-flags.sexp)) (modules main)) -(rule - (alias runtezt) - (package tezos-protocol-alpha-tests) - (action (run %{dep:./main.exe}))) - (rule (targets main.ml) (action (with-stdout-to %{targets} (echo "let () = Tezt.Test.run ()")))) diff --git a/src/proto_alpha/lib_protocol/test/regression/dune b/src/proto_alpha/lib_protocol/test/regression/dune index 31fd134e85ece0c8dc19f5e1145c7654208295fd..4afad180aee08e0addccd7ce0f4d5e67db189a46 100644 --- a/src/proto_alpha/lib_protocol/test/regression/dune +++ b/src/proto_alpha/lib_protocol/test/regression/dune @@ -27,8 +27,10 @@ -open Tezos_micheline) (modules test_logging)) -(executable +(test + (enabled_if (not %{env:CI=true})) (name main) + (package tezos-protocol-alpha-tests) (libraries src_proto_alpha_lib_protocol_test_regression_tezt_lib tezt) @@ -37,14 +39,6 @@ (:include %{workspace_root}/macos-link-flags.sexp)) (modules main)) -(rule - (alias runtezt) - (package tezos-protocol-alpha-tests) - (deps - (glob_files contracts/*.tz) - (glob_files expected/test_logging.ml/*.out)) - (action (run %{dep:./main.exe}))) - (rule (targets main.ml) (action (with-stdout-to %{targets} (echo "let () = Tezt.Test.run ()")))) diff --git a/src/proto_alpha/lib_protocol/test/unit/dune b/src/proto_alpha/lib_protocol/test/unit/dune index 977ac85da2d1b81487549f64c7f998ca8253e07d..5c40484c060deffbe8fc4bdbf05c25f3cac293d9 100644 --- a/src/proto_alpha/lib_protocol/test/unit/dune +++ b/src/proto_alpha/lib_protocol/test/unit/dune @@ -1,7 +1,7 @@ ; This file was automatically generated, do not edit. ; Edit file manifest/main.ml instead. -(executable +(test (name main) (libraries tezos-base diff --git a/src/proto_alpha/lib_sc_rollup/dune b/src/proto_alpha/lib_sc_rollup/dune index e725e6fe51502e79da4530c9f07268c6b282bcd1..21ca8b4a0677c6a61fcabe7c0f3326e11645b8a4 100644 --- a/src/proto_alpha/lib_sc_rollup/dune +++ b/src/proto_alpha/lib_sc_rollup/dune @@ -8,7 +8,7 @@ (libraries tezos-base tezos-protocol-alpha) - (inline_tests (flags -verbose) (modes native)) + (inline_tests (flags -verbose) (modes best)) (preprocess (pps ppx_expect)) (library_flags (:standard -linkall)) (flags diff --git a/src/proto_alpha/lib_sc_rollup_layer2/dune b/src/proto_alpha/lib_sc_rollup_layer2/dune index ced3408b31b9eabdfc16fffbda55bb24b360cf4a..4eead3658dfe72cba8bd143e36982c994924c2d0 100644 --- a/src/proto_alpha/lib_sc_rollup_layer2/dune +++ b/src/proto_alpha/lib_sc_rollup_layer2/dune @@ -9,7 +9,7 @@ tezos-base tezos-protocol-alpha octez-injector) - (inline_tests (flags -verbose) (modes native)) + (inline_tests (flags -verbose) (modes best)) (preprocess (pps ppx_expect)) (library_flags (:standard -linkall)) (flags diff --git a/src/tooling/opam-lint/dune b/src/tooling/opam-lint/dune index da36ce2f071f42f301f51ddd7b07e31ef178c6f9..7d02390cf361e2719bd108e33a62ac220c290c73 100644 --- a/src/tooling/opam-lint/dune +++ b/src/tooling/opam-lint/dune @@ -1,7 +1,7 @@ ; This file was automatically generated, do not edit. ; Edit file manifest/main.ml instead. -(executable +(test (name opam_lint) (libraries opam_file_format diff --git a/tezt/tests/dune b/tezt/tests/dune index 9a75882cbfe34d6e34578415939e6ff37656c518..dd702395f680f455d4c75b5fb96b5d50fe8551b1 100644 --- a/tezt/tests/dune +++ b/tezt/tests/dune @@ -1,7 +1,7 @@ ; This file was automatically generated, do not edit. ; Edit file manifest/main.ml instead. -(executable +(test (name main) (libraries tezt