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

CI is broken due to benchmarks dependency on core_bench #217

Open
mooreryan opened this issue Jan 3, 2023 · 0 comments
Open

CI is broken due to benchmarks dependency on core_bench #217

mooreryan opened this issue Jan 3, 2023 · 0 comments

Comments

@mooreryan
Copy link

The current github action is broken due to the core_bench dependency in the benchmarks.

Example: https://github.com/ocaml/ocaml-re/actions/runs/3736175311/jobs/6413859261

Run opam exec -- dune build
File "benchmarks/dune", line 2, characters 23-33:
2 |  (libraries re threads core_bench)
                           ^^^^^^^^^^
Error: Library "core_bench" not found.
-> required by _build/default/benchmarks/benchmark.exe
-> required by alias benchmarks/all
-> required by alias default
Error: Process completed with exit code 1.

I was thinking of two possible fixes.

  1. Add - run: opam install core_bench.v0.14.0 to the workflow yaml file before the dune build command is run. It has to be v0.14 for now as the benchmarks use some modules that were deprecated in v0.15. Main problem with this is that it's a heavy dep that will add some time to the CI.
  2. Change opam exec -- dune build to dune build deprecated/ lib/ lib_test/ to avoid building the benchmarks in the CI. This seems like a good approach as the benchmarks are not run in the CI.

I have tested option 2 on the GitHub actions of my fork and it works fine for 4.14 action. (the 4.03 is still broken, but for reasons unrelated to this issue).

If one of these options sounds good to you, I can open a pull request for it.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant