Skip to content

Commit

Permalink
CI updates (adapt Jane Street packages)
Browse files Browse the repository at this point in the history
  • Loading branch information
vouillon authored and hhugo committed Dec 11, 2024
1 parent eff5bac commit dc6c457
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion tools/ci_setup.ml
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,14 @@ let () =
sync_exec (fun i () -> clone i "ocaml-uri" "https://github.com/mirage/ocaml-uri") [ () ];
sync_exec
(fun i nm ->
let branch = if is_forked nm then Some "wasm" else None in
let branch =
if is_forked nm
then
if List.mem nm [ "bonsai"; "virtual_dom"; "async_js" ]
then Some "jsoo-6"
else Some "wasm"
else None
in
let commit =
if is_forked nm
then None
Expand Down

0 comments on commit dc6c457

Please sign in to comment.