Compare commits

..

No commits in common. "12dda4a8a93cc3676a55dc7ed79280df76a30460" and "ad4e889a9586ad7200a2e337a20c4f9e5867f019" have entirely different histories.

2 changed files with 4 additions and 8 deletions

View file

@ -61,9 +61,9 @@ jobs:
- run: opam exec -- dune build @install -p opentelemetry
- run: opam install lwt.6.1.1 -y
if: ${{ matrix.ocaml-compiler == '5.3.x' }}
if: ${{ startsWith(matrix.ocaml-compiler, '5') }}
- run: opam exec -- dune build @install -p opentelemetry,opentelemetry-client,opentelemetry-lwt,opentelemetry-client-cohttp-lwt
if: ${{ matrix.ocaml-compiler == '5.3.x' }}
if: ${{ startsWith(matrix.ocaml-compiler, '5') }}
- run: opam install ocaml-protoc
- run: opam exec -- dune build @lint

View file

@ -28,16 +28,12 @@
(rule
(enabled_if
(and
%{lib-available:lwt}
(>= %{version:lwt} 6.0)))
(>= %{version:lwt} 6.0))
(action
(copy types_.ml.6 types_.ml)))
(rule
(enabled_if
(and
%{lib-available:lwt}
(< %{version:lwt} 6.0)))
(< %{version:lwt} 6.0))
(action
(copy types_.ml.5 types_.ml)))