Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

runner: remove constraint against ocaml #4

Merged
merged 1 commit into from
Jun 25, 2024
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
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ homepage:
bug-reports: "https://github.com/ocaml-dune/ocaml-monorepo-benchmark/issues"
depends: [
"dune" {>= "3.13"}
"ocaml" {= "4.14.1"}
"ocaml"
"dune-rpc-lwt"
"lwt" {= "5.6.1"}
"fmt" {= "0.9.0"}
Expand Down
4 changes: 2 additions & 2 deletions dune-monorepo-benchmark-runner/dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
(name dune-monorepo-benchmark-runner)
(synopsis "Tool for running dune monorepo benchmarks")
(depends
; This is constrained since the monorepo was assembled with this version of ocaml
(ocaml (= "4.14.1"))
; Left unconstrained so that it's possible to update the test version of dune
(ocaml (>= 4.14))
; No version constraint here since it will need to build with the latest
; version of dune anyway since in practice this will be re-built with dune
; pinned to the version being benchmarked.
Expand Down
Loading