Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion .github/workflows/opam.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,13 @@ jobs:
env:
QCHECK_MSG_INTERVAL: '60'

strategy:
matrix:
ocaml-compiler:
- 4.14.x
- 5.0.0
- ocaml-variants.5.1.0+trunk

runs-on: ubuntu-latest

steps:
Expand All @@ -24,7 +31,7 @@ jobs:
- name: Install OCaml compiler
uses: ocaml/setup-ocaml@v2
with:
ocaml-compiler: 5.0.0
ocaml-compiler: ${{ matrix.ocaml-compiler }}
opam-depext: false

- name: Test installation of the OPAM packages
Expand Down
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,15 +47,16 @@ helpful](https://tarides.com/blog/2022-12-22-ocaml-5-multicore-testing-tools).
Installation instructions, and running the tests
================================================

Both the libraries and the test suite require OCaml 5.0:
The multicore test suite requires OCaml 5.0 (or newer):
```
opam update
opam switch create 5.0.0
```

The two testing libraries are available as packages `qcheck-lin`
and `qcheck-stm` from the opam repository and can be installed in
the usual way:
and `qcheck-stm` from the opam repository. The full versions require
OCaml 5.x and reduced, non-`Domain` versions are available for OCaml
4.14.x. They can be installed in the usual way:
```
opam install qcheck-lin
opam install qcheck-stm
Expand Down Expand Up @@ -362,8 +363,8 @@ Sequential `STM` tests targeting `Sys.rename` found [two corner cases
where MingW behaves differently](https://github.com/ocaml/ocaml/issues/12073)


`flexdll` contains a race condition in its handling of errors (new, flexdll)
----------------------------------------------------------------------------
`flexdll` contains a race condition in its handling of errors (new, fixed, flexdll)
-----------------------------------------------------------------------------------

Parallel `Lin` tests of the `Dynlink` module found [a race
condition](https://github.com/ocaml/flexdll/pull/112) in accesses to
Expand Down