-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improve successes for the ocaml-ci
(for OCaml ≤ 4.12 + lower bounds)
#39
Conversation
This brings the lower bound from 4.13 to 4.12. Next failure is on the |
6dfda4f
to
b4589de
Compare
In case anybody is also curious, double-checked that module F (P : sig val x : string end) = struct
let p () = Printf.eprintf "x: %S, f: %S\n%!" P.x __FUNCTION__
end
module G = F(struct let x = "G-arg" end)
module H = F(struct let x = "H-arg" end)
let () =
G.p ();
H.p ();
print_endline "Done."
|
8a1d4c8
to
8e2a8d7
Compare
ocaml-ci
(for OCaml ≤ 4.12)ocaml-ci
(for OCaml ≤ 4.12 + lower bounds)
The remaining failures are from |
web.ml
Outdated
@@ -301,7 +301,8 @@ module Http (IO : IO_TYPE) (Curl_IO : CURL with type 'a t = 'a IO.t) : HTTP with | |||
"url.full", `String url; | |||
] | |||
in | |||
let explicit_span = Possibly_otel.enter_manual_span ~__FUNCTION__ ~__FILE__ ~__LINE__ ~data:describe action_name in | |||
let explicit_span = | |||
Possibly_otel.enter_manual_span ~__FUNCTION__:"Web.Http.add_if_absent" ~__FILE__ ~__LINE__ ~data:describe action_name in |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why Web.Http.add_if_absent?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's what the value __FUNCTION__
gives there right?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oops actually not, misread, sorry
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The real value at that location seems to be "Devkit_core__Web.Http.http_request'.(fun)"
, at least from dune utop .
, not sure how it shows up in other build contexts.
8e2a8d7
to
31632b4
Compare
- `String.starts_with` added in 4.13. - `__FUNCTION__` added in 4.12. - Force version of PCRE bindings (from 2020, OCaml 4.08). - Force version of Lwt (`Lwt.reraise` added in 5.7.0).
31632b4
to
4ce705f
Compare
No description provided.