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 committed Dec 11, 2024
1 parent 406c197 commit 80525ed
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 80525ed

Please sign in to comment.