try to fix CI

This commit is contained in:
Simon Cruanes 2025-12-27 19:33:24 -05:00
parent f5a13a1248
commit ca6482085d
No known key found for this signature in database
GPG key ID: EBFFF6F283F3A2B4
4 changed files with 5 additions and 1 deletions

View file

@ -55,7 +55,7 @@ jobs:
- run: opam install . --deps-only --with-test --solver=mccs
if: ${{ startsWith(matrix.ocaml-compiler, '5') }}
- run: opam exec -- dune build @install -p opentelemetry,opentelemetry-lwt,opentelemetry-client-ocurl,opentelemetry-cohttp-lwt,opentelemetry-client-cohttp-lwt,opentelemetry-logs
- run: opam exec -- dune build @install -p opentelemetry,opentelemetry-client,opentelemetry-lwt,opentelemetry-client-ocurl,opentelemetry-cohttp-lwt,opentelemetry-client-cohttp-lwt,opentelemetry-logs
- run: opam pin trace --dev -y -n
- run: opam install trace

View file

@ -161,6 +161,8 @@
(odoc :with-doc)
(lwt
(>= "5.3"))
(cohttp
(>= "6.0.0"))
(cohttp-lwt
(>= "6.0.0"))
(alcotest :with-test))

View file

@ -18,6 +18,7 @@ depends: [
"opentelemetry-lwt" {= version}
"odoc" {with-doc}
"lwt" {>= "5.3"}
"cohttp" {>= "6.0.0"}
"cohttp-lwt" {>= "6.0.0"}
"alcotest" {with-test}
]

View file

@ -5,5 +5,6 @@
(libraries
(re_export opentelemetry.atomic)
ptime
threads
opentelemetry.domain)
(synopsis "Basic utilities for opentelemetry"))