Skip to content

Commit

Permalink
Address peer review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
andersfugmann committed Jul 7, 2023
1 parent 050e093 commit fe4ccf4
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
9 changes: 8 additions & 1 deletion .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@ jobs:
- 5.0.0
- 4.14.0
- 4.04.1
include:
- lwt: true
- async: true
- eio: true
ocaml-version: 5.0.0

runs-on: ${{ matrix.os }}

Expand All @@ -35,21 +40,23 @@ jobs:
opam exec -- dune runtest zmq
- name: zmq-lwt
if: matrix.lwt
run: |
opam pin add zmq-lwt.dev . --no-action
opam install --deps-only --with-doc --with-test zmq-lwt
opam exec -- dune build zmq-lwt
opam exec -- dune runtest zmq-lwt
- name: zmq-async
if: matrix.async
run: |
opam pin add zmq-async.dev . --no-action
opam install --deps-only --with-doc --with-test zmq-async
opam exec -- dune build zmq-async
opam exec -- dune runtest zmq-async
- name: zmq-eio
if: ${{ matrix.ocaml-version == '5.0.0' }}
if: matrix.eio
run: |
opam pin add zmq-eio.dev . --no-action
opam install --deps-only --with-doc --with-test zmq-eio
Expand Down
1 change: 0 additions & 1 deletion zmq-eio/test/test.ml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
open OUnit

(** Sleep is horrible slow, or causing strange slowdowns *)
let sleepf env secs = Eio.Time.sleep (Eio.Stdenv.clock env) secs

let setup ~sw env =
Expand Down

0 comments on commit fe4ccf4

Please sign in to comment.