Skip to content

Commit 8a3ddbd

Browse files
committed
fixup! OxCaml: setup CI
1 parent d2802be commit 8a3ddbd

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

.github/workflows/js_of_ocaml.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,10 @@ jobs:
169169
- run: opam install . --best-effort --solver builtin-mccs+glpk
170170
if: ${{ matrix.skip-test }}
171171

172+
- name: Pin qcheck
173+
run: opam pin add [email protected]:vouillon/qcheck
174+
if: matrix.ocaml-compiler == 'ocaml-variants.5.2.0+ox'
175+
172176
- run: opam install . --deps-only --with-test
173177
# Install the test dependencies
174178
if: ${{ !matrix.skip-test }}

.github/workflows/wasm_of_ocaml.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,10 @@ jobs:
138138
run: opam pin add ppxlib -n 0.35.0
139139
if: matrix.ocaml-compiler != 'ocaml-variants.5.2.0+ox'
140140

141+
- name: Pin qcheck
142+
run: opam pin add [email protected]:vouillon/qcheck
143+
if: matrix.ocaml-compiler == 'ocaml-variants.5.2.0+ox'
144+
141145
- name: Checkout Jane Street packages
142146
if: matrix.jane_street_tests
143147
run: |

tools/ci_setup-oxcaml.ml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ let roots =
1818
; "unboxed"
1919
]
2020

21-
let omitted_others = StringSet.of_list []
21+
let omitted_others = StringSet.of_list ["odoc"]
2222

23-
let omitted_js = StringSet.of_list [ "basement"; "sexplib0"; "ppxlib_jane" ]
23+
let omitted_js = StringSet.of_list [ "basement"; "sexplib0"; "ppxlib_jane"; "spawn" ]
2424

25-
let do_pin = StringSet.of_list []
25+
let do_pin = StringSet.of_list [ "bigstringaf" ]
2626

2727
let forked_packages =
2828
StringSet.of_list

0 commit comments

Comments
 (0)