We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eff5bac commit dc6c457Copy full SHA for dc6c457
tools/ci_setup.ml
@@ -263,7 +263,14 @@ let () =
263
sync_exec (fun i () -> clone i "ocaml-uri" "https://github.com/mirage/ocaml-uri") [ () ];
264
sync_exec
265
(fun i nm ->
266
- let branch = if is_forked nm then Some "wasm" else None in
+ let branch =
267
+ if is_forked nm
268
+ then
269
+ if List.mem nm [ "bonsai"; "virtual_dom"; "async_js" ]
270
+ then Some "jsoo-6"
271
+ else Some "wasm"
272
+ else None
273
+ in
274
let commit =
275
if is_forked nm
276
then None
0 commit comments