Skip to content

Commit

Permalink
CI: test OCaml 5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
vouillon committed Dec 4, 2024
1 parent 3f22e30 commit a05e05a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-wasm_of_ocaml.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- 5.00.x
- 5.01.x
- 5.02.x
- 5.3.0~beta2
- ocaml-compiler.5.3.0~beta2
separate_compilation:
- true
include:
Expand Down
8 changes: 6 additions & 2 deletions ppx/ppx_js/tests/dune
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,18 @@
(rule
(targets ppx.mlt.corrected)
(enabled_if
(>= %{ocaml_version} 5.2))
(and
(>= %{ocaml_version} 5.2)
(< %{ocaml_version} 5.3)))
(action
(run %{exe:main.bc} %{dep:ppx.mlt})))

(rule
(alias runtest)
(package js_of_ocaml-ppx)
(enabled_if
(>= %{ocaml_version} 5.2))
(and
(>= %{ocaml_version} 5.2)
(< %{ocaml_version} 5.3)))
(action
(diff ppx.mlt ppx.mlt.corrected)))

0 comments on commit a05e05a

Please sign in to comment.