Skip to content

Commit 5859d56

Browse files
hhugovouillon
andauthored
Fix CI (#2095)
--------- Co-authored-by: Jérôme Vouillon <jerome.vouillon@gmail.com>
1 parent 5231118 commit 5859d56

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.github/workflows/wasm_of_ocaml.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,9 @@ jobs:
115115
working-directory: ./wasm_of_ocaml
116116
run: opam pin . -n --with-version dev
117117

118+
- name: Pin dune
119+
run: opam pin add dune https://github.com/ocaml/dune.git
120+
118121
- name: Checkout Jane Street packages
119122
if: matrix.jane_street_tests
120123
run: |

dune-project

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
(ocaml (>= 4.13))
4646
(js_of_ocaml (= :version))
4747
(js_of_ocaml-ppx (= :version))
48-
(lwt (>= 2.4.4))
48+
(lwt (and (>= 2.4.4) (<> 5.9.2)))
4949
(num :with-test)
5050
(ppx_expect (and (>= v0.14.2) :with-test))
5151
(re (and (>= 1.9.0) :with-test)))

js_of_ocaml-lwt.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ depends: [
1616
"ocaml" {>= "4.13"}
1717
"js_of_ocaml" {= version}
1818
"js_of_ocaml-ppx" {= version}
19-
"lwt" {>= "2.4.4"}
19+
"lwt" {>= "2.4.4" & != "5.9.2"}
2020
"num" {with-test}
2121
"ppx_expect" {>= "v0.14.2" & with-test}
2222
"re" {>= "1.9.0" & with-test}

0 commit comments

Comments
 (0)