diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 5ab36d07..05370376 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -16,7 +16,7 @@ jobs: #- macos-latest #- windows-latest ocaml-compiler: - - 4.03.x + - 4.08.x - 4.14.x runs-on: ${{ matrix.os }} steps: @@ -27,5 +27,6 @@ jobs: - run: opam pin -n . - run: opam depext -yt re - run: opam install -t . --deps-only + - run: opam install -y core_bench core_unix - run: opam exec -- dune build - run: opam exec -- dune runtest diff --git a/benchmarks/benchmark.ml b/benchmarks/benchmark.ml index a887870b..cc9a4788 100644 --- a/benchmarks/benchmark.ml +++ b/benchmarks/benchmark.ml @@ -163,4 +163,4 @@ let benchmarks = |> Bench.Test.create_group ~name:"tex gitignore" ] @ [http_benches] -let () = Command.run (Bench.make_command benchmarks) +let () = Command_unix.run (Bench.make_command benchmarks) diff --git a/benchmarks/dune b/benchmarks/dune index f8ec83b4..bc553105 100644 --- a/benchmarks/dune +++ b/benchmarks/dune @@ -1,3 +1,3 @@ (executable - (libraries re threads core_bench) + (libraries re threads core_bench core_unix.command_unix) (name benchmark))