Skip to content

Commit d22f264

Browse files
committed
fixup! OxCaml: setup CI
1 parent 70c6bab commit d22f264

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

tools/ci_setup-oxcaml.ml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ let roots =
1919
; "await"
2020
]
2121

22+
let additional_others = StringSet.of_list [ "spawn" ]
23+
2224
let omitted_others = StringSet.of_list [ "odoc" ]
2325

2426
let omitted_js = StringSet.of_list [ "basement"; "sexplib0"; "ppxlib_jane"; "spawn" ]
@@ -332,7 +334,10 @@ let pin nm =
332334
let pin_packages () = sync_exec pin (StringSet.elements do_pin)
333335

334336
let install_others others =
335-
let others = StringSet.elements (StringSet.diff others omitted_others) in
337+
let others =
338+
StringSet.elements
339+
(StringSet.union (StringSet.diff others omitted_others) additional_others)
340+
in
336341
ignore (Sys.command ("opam install -y " ^ String.concat " " others))
337342

338343
let clone ?branch ?(depth = 1) nm src =

0 commit comments

Comments
 (0)