Skip to content

Commit d45715c

Browse files
committed
CI: test OCaml 5.3
1 parent 642752f commit d45715c

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.github/workflows/build-wasm_of_ocaml.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- 5.00.x
2121
- 5.01.x
2222
- 5.02.x
23-
- 5.3.0~beta2
23+
- ocaml-compiler.5.3.0~beta2
2424
separate_compilation:
2525
- true
2626
include:

ppx/ppx_js/tests/dune

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,18 @@
77
(rule
88
(targets ppx.mlt.corrected)
99
(enabled_if
10-
(>= %{ocaml_version} 5.2))
10+
(and
11+
(>= %{ocaml_version} 5.2)
12+
(< %{ocaml_version} 5.3)))
1113
(action
1214
(run %{exe:main.bc} %{dep:ppx.mlt})))
1315

1416
(rule
1517
(alias runtest)
1618
(package js_of_ocaml-ppx)
1719
(enabled_if
18-
(>= %{ocaml_version} 5.2))
20+
(and
21+
(>= %{ocaml_version} 5.2)
22+
(< %{ocaml_version} 5.3)))
1923
(action
2024
(diff ppx.mlt ppx.mlt.corrected)))

0 commit comments

Comments
 (0)