Build:
- 0
2026-01-27 19:25.16: New job: test opentelemetry-cohttp-lwt.0.10 with lwt_ppx.5.9.3, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29298/head (8e877034098c5f2e5b405f4e7113e0df0241a3ae)
on debian-13-ocaml-5.4/amd64
To reproduce locally:
cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29298/head" && git reset --hard 8e877034
git fetch origin master
git merge --no-edit 88150787b3c9df767fd8dadf5d416641f8ee58f8
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:7b75eb963f7d9195aa7a042832bacc96efd4ab4b0279914c2953f9f23ee6d1e6
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn lwt_ppx.5.9.3 5.9.3
RUN opam reinstall lwt_ppx.5.9.3; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'lwt_ppx.5.9.3' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall opentelemetry-cohttp-lwt.0.10; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'opentelemetry-cohttp-lwt.0.10' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN (opam reinstall --with-test opentelemetry-cohttp-lwt.0.10) || true
RUN opam reinstall --with-test --verbose opentelemetry-cohttp-lwt.0.10; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'opentelemetry-cohttp-lwt.0.10' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
END-OF-DOCKERFILE
docker build -f ../Dockerfile .
2026-01-27 19:25.16: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:7b75eb963f7d9195aa7a042832bacc96efd4ab4b0279914c2953f9f23ee6d1e6-lwt_ppx.5.9.3-opentelemetry-cohttp-lwt.0.10-8e877034098c5f2e5b405f4e7113e0df0241a3ae"
2026-01-27 19:25.16: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:7b75eb963f7d9195aa7a042832bacc96efd4ab4b0279914c2953f9f23ee6d1e6)
(user (uid 1000) (gid 1000))
(workdir /home/opam)
(run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
(run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
(run (shell "opam option solver=builtin-0install && opam config report"))
(env OPAMDOWNLOADJOBS 1)
(env OPAMERRLOGLEN 0)
(env OPAMPRECISETRACKING 1)
(env CI true)
(env OPAM_REPO_CI true)
(run (shell "rm -rf opam-repository/"))
(copy (src .) (dst opam-repository/))
(run (shell "opam repository set-url --strict default opam-repository/"))
(run (network host)
(shell "opam update --depexts || true"))
(run (shell "opam pin add -k version -yn lwt_ppx.5.9.3 5.9.3"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall lwt_ppx.5.9.3;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'lwt_ppx.5.9.3' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall opentelemetry-cohttp-lwt.0.10;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'opentelemetry-cohttp-lwt.0.10' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
(run (network host)
(shell "(opam reinstall --with-test opentelemetry-cohttp-lwt.0.10) || true"))
(run (shell "opam reinstall --with-test --verbose opentelemetry-cohttp-lwt.0.10;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'opentelemetry-cohttp-lwt.0.10' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2026-01-27 19:25.16: Waiting for resource in pool OCluster
2026-01-27 19:25.17: Waiting for worker…
2026-01-27 19:29.32: Got resource from pool OCluster
Building on laodoke.caelum.ci.dev
All commits already cached
Updating files: 62% (12139/19286)
Updating files: 63% (12151/19286)
Updating files: 64% (12344/19286)
Updating files: 65% (12536/19286)
Updating files: 66% (12729/19286)
Updating files: 67% (12922/19286)
Updating files: 68% (13115/19286)
Updating files: 69% (13308/19286)
Updating files: 70% (13501/19286)
Updating files: 71% (13694/19286)
Updating files: 72% (13886/19286)
Updating files: 73% (14079/19286)
Updating files: 74% (14272/19286)
Updating files: 75% (14465/19286)
Updating files: 76% (14658/19286)
Updating files: 77% (14851/19286)
Updating files: 78% (15044/19286)
Updating files: 79% (15236/19286)
Updating files: 80% (15429/19286)
Updating files: 81% (15622/19286)
Updating files: 82% (15815/19286)
Updating files: 83% (16008/19286)
Updating files: 84% (16201/19286)
Updating files: 85% (16394/19286)
Updating files: 86% (16586/19286)
Updating files: 87% (16779/19286)
Updating files: 88% (16972/19286)
Updating files: 89% (17165/19286)
Updating files: 90% (17358/19286)
Updating files: 91% (17551/19286)
Updating files: 92% (17744/19286)
Updating files: 93% (17936/19286)
Updating files: 94% (18129/19286)
Updating files: 95% (18322/19286)
Updating files: 96% (18515/19286)
Updating files: 97% (18708/19286)
Updating files: 98% (18901/19286)
Updating files: 99% (19094/19286)
Updating files: 100% (19286/19286)
Updating files: 100% (19286/19286), done.
HEAD is now at 88150787b3 Merge pull request #29287 from dinosaure/release-git-kv-v0.2.1
Updating 88150787b3..8e87703409
Fast-forward
packages/lwt_ppx/lwt_ppx.5.9.2/opam | 1 +
packages/lwt_ppx/lwt_ppx.5.9.3/opam | 41 +++++++++++++++++++++++++++++++++++++
2 files changed, 42 insertions(+)
create mode 100644 packages/lwt_ppx/lwt_ppx.5.9.3/opam
(from ocaml/opam:debian-13-ocaml-5.4@sha256:7b75eb963f7d9195aa7a042832bacc96efd4ab4b0279914c2953f9f23ee6d1e6)
2026-01-27 19:33.35 ---> using "ec0b9239d97b1eba002b8666d90bcda143b1414915128d32a0b6cb8a1bd9f05c" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-01-27 19:33.35 ---> using "cd9db1bfd75ad168f36443d6cd7ffe58df2d9e73878dee80fe00f4ec900a65e4" from cache
/home/opam: (run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
- you won't be able to use mercurial repositories unless you install the hg command on your system.
- you won't be able to use darcs repositories unless you install the darcs command on your system.
This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.
Continue? [Y/n] y
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-01-27 19:33.35 ---> using "cbe59c2111ee2f6ebb74444b6a2e449be1401fb2a7e89471df12d7734c31aef0" from cache
/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version 2.5.0
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=debian os-version=13
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 71
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 5.4
# invariant ["ocaml-base-compiler" {>= "5.4.0"}]
# compiler-packages ocaml-base-compiler.5.4.0, ocaml-compiler.5.4.0, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 5.4.0
2026-01-27 19:33.35 ---> using "bfb3fee637cd4ed2c6e4ef53b349cc70b7b5c70d4fb4d56c09378a42134b6bf5" from cache
/home/opam: (env OPAMDOWNLOADJOBS 1)
/home/opam: (env OPAMERRLOGLEN 0)
/home/opam: (env OPAMPRECISETRACKING 1)
/home/opam: (env CI true)
/home/opam: (env OPAM_REPO_CI true)
/home/opam: (run (shell "rm -rf opam-repository/"))
2026-01-27 19:33.35 ---> using "a80806ab1cec707e8afb5a047be43e19f2c71735f9ef12880c11228115befadd" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-01-27 19:33.37 ---> using "4d2173b6a12bf46ba0732680143bff46de32d79ccdad93ab14a4cc3c9985d81f" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-01-27 19:33.37 ---> using "f9e1a37a8b763994573ebd28a567fb89e9fc0ee3b44b7398fbb46e04c7f383e4" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian trixie InRelease
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [97.9 kB]
- Fetched 189 kB in 0s (960 kB/s)
- Reading package lists...
-
2026-01-27 19:33.37 ---> using "f39ac17b450facac1d664abcb48143ad60d12762f9503585ad15a3c35898b6b4" from cache
/home/opam: (run (shell "opam pin add -k version -yn lwt_ppx.5.9.3 5.9.3"))
lwt_ppx is now pinned to version 5.9.3
2026-01-27 19:33.37 ---> using "9d2163634075c7e14fe5a3b43cbbde7bf86469c638e6d1742828a6f839d62a20" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall lwt_ppx.5.9.3;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'lwt_ppx.5.9.3' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
lwt_ppx.5.9.3 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 14 packages
- install base-bytes base [required by ocplib-endian]
- install cppo 1.8.0 [required by lwt]
- install csexp 1.5.2 [required by dune-configurator]
- install dune 3.21.0 [required by lwt_ppx]
- install dune-configurator 3.21.0 [required by lwt]
- install lwt 6.0.0 [required by lwt_ppx]
- install lwt_ppx 5.9.3 (pinned)
- install ocaml-compiler-libs v0.17.0 [required by ppxlib]
- install ocamlfind 1.9.8 [required by base-bytes]
- install ocplib-endian 1.2 [required by lwt]
- install ppx_derivers 1.2.1 [required by ppxlib]
- install ppxlib 0.37.0 [required by lwt_ppx]
- install sexplib0 v0.17.0 [required by ppxlib]
- install stdlib-shims 0.3.0 [required by ppxlib]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved cppo.1.8.0 (cached)
-> retrieved csexp.1.5.2 (cached)
-> retrieved dune.3.21.0, dune-configurator.3.21.0 (cached)
-> retrieved lwt.6.0.0 (cached)
-> retrieved lwt_ppx.5.9.3 (cached)
-> retrieved ocaml-compiler-libs.v0.17.0 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved ocplib-endian.1.2 (cached)
-> retrieved ppx_derivers.1.2.1 (cached)
-> retrieved ppxlib.0.37.0 (cached)
-> retrieved sexplib0.v0.17.0 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed dune.3.21.0
-> installed ppx_derivers.1.2.1
-> installed csexp.1.5.2
-> installed cppo.1.8.0
-> installed ocaml-compiler-libs.v0.17.0
-> installed sexplib0.v0.17.0
-> installed stdlib-shims.0.3.0
-> installed ocplib-endian.1.2
-> installed dune-configurator.3.21.0
-> installed lwt.6.0.0
-> installed ppxlib.0.37.0
-> installed lwt_ppx.5.9.3
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-27 19:33.37 ---> using "0bada14888fd512eadb37f915067c10499dc043d979993885b5beb5d5d6b0525" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall opentelemetry-cohttp-lwt.0.10;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'opentelemetry-cohttp-lwt.0.10' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
opentelemetry-cohttp-lwt.0.10 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 26 packages
- install ambient-context 0.1.0 [required by opentelemetry, opentelemetry-lwt]
- install angstrom 0.16.1 [required by uri]
- install base v0.17.3 [required by ppx_sexp_conv]
- install base64 3.5.2 [required by cohttp]
- install bigstringaf 0.10.0 [required by angstrom]
- install cohttp 5.3.1 [required by cohttp-lwt]
- install cohttp-lwt 5.3.0 [required by opentelemetry-cohttp-lwt]
- install hmap 0.8.1 [required by opentelemetry]
- install jsonm 1.0.2 [required by cohttp]
- install logs 0.10.0 [required by cohttp-lwt]
- install ocaml-syntax-shims 1.0.0 [required by angstrom]
- install ocaml_intrinsics_kernel v0.17.1 [required by base]
- install ocamlbuild 0.16.1 [required by logs, ptime]
- install opentelemetry 0.10 [required by opentelemetry-cohttp-lwt]
- install opentelemetry-cohttp-lwt 0.10
- install opentelemetry-lwt 0.10 [required by opentelemetry-cohttp-lwt]
- install pbrt 3.1.1 [required by opentelemetry]
- install ppx_sexp_conv v0.17.1 [required by cohttp-lwt]
- install ppxlib_jane v0.17.4 [required by ppx_sexp_conv]
- install ptime 1.2.0 [required by opentelemetry]
- install re 1.14.0 [required by cohttp]
- install stringext 1.6.0 [required by cohttp]
- install topkg 1.1.1 [required by logs, ptime]
- install uri 4.4.0 [required by cohttp-lwt]
- install uri-sexp 4.4.0 [required by cohttp]
- install uutf 1.0.4 [required by jsonm]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ambient-context.0.1.0 (cached)
-> retrieved angstrom.0.16.1 (cached)
-> retrieved base.v0.17.3 (cached)
-> retrieved base64.3.5.2 (cached)
-> retrieved bigstringaf.0.10.0 (cached)
-> retrieved cohttp.5.3.1 (cached)
-> retrieved cohttp-lwt.5.3.0 (cached)
-> retrieved hmap.0.8.1 (cached)
-> retrieved jsonm.1.0.2 (cached)
-> retrieved logs.0.10.0 (cached)
-> retrieved ocaml-syntax-shims.1.0.0 (cached)
-> retrieved ocaml_intrinsics_kernel.v0.17.1 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved opentelemetry.0.10, opentelemetry-cohttp-lwt.0.10, opentelemetry-lwt.0.10 (cached)
-> installed base64.3.5.2
-> retrieved pbrt.3.1.1 (cached)
-> retrieved ppx_sexp_conv.v0.17.1 (cached)
-> retrieved ppxlib_jane.v0.17.4 (cached)
-> retrieved ptime.1.2.0 (cached)
-> retrieved re.1.14.0 (cached)
-> installed bigstringaf.0.10.0
-> installed ocaml_intrinsics_kernel.v0.17.1
-> retrieved stringext.1.6.0 (cached)
-> retrieved topkg.1.1.1 (cached)
-> retrieved uri.4.4.0, uri-sexp.4.4.0 (cached)
-> retrieved uutf.1.0.4 (cached)
-> installed stringext.1.6.0
-> installed pbrt.3.1.1
-> installed ppxlib_jane.v0.17.4
-> installed ocaml-syntax-shims.1.0.0
-> installed re.1.14.0
-> installed angstrom.0.16.1
-> installed uri.4.4.0
-> installed ocamlbuild.0.16.1
-> installed base.v0.17.3
-> installed ppx_sexp_conv.v0.17.1
-> installed topkg.1.1.1
-> installed hmap.0.8.1
-> installed uutf.1.0.4
-> installed logs.0.10.0
-> installed ambient-context.0.1.0
-> installed uri-sexp.4.4.0
-> installed ptime.1.2.0
-> installed jsonm.1.0.2
-> installed opentelemetry.0.10
[ERROR] The compilation of opentelemetry-lwt.0.10 failed at "dune build -p opentelemetry-lwt -j 71 --promote-install-files=false @install".
-> installed cohttp.5.3.1
-> installed cohttp-lwt.5.3.0
#=== ERROR while compiling opentelemetry-lwt.0.10 =============================#
# context 2.5.0 | linux/x86_64 | ocaml-base-compiler.5.4.0 | file:///home/opam/opam-repository
# path ~/.opam/5.4/.opam-switch/build/opentelemetry-lwt.0.10
# command ~/.opam/opam-init/hooks/sandbox.sh build dune build -p opentelemetry-lwt -j 71 --promote-install-files=false @install
# exit-code 1
# env-file ~/.opam/log/opentelemetry-lwt-6-d9a577.env
# output-file ~/.opam/log/opentelemetry-lwt-6-d9a577.out
### output ###
# (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -warn-error -a+8 -w +a-4-30-40-41-42-44-48-70 -strict-sequence -g -bin-annot -bin-annot-occurrences -I src/lwt/.opentelemetry_lwt.objs/byte -I /home/opam/.opam/5.4/lib/ambient-context -I /home/opam/.opam/5.4/lib/ambient-context/core -I /home/opam/.opam/5.4/lib/hmap -I /home/opam/.opam/5.4/lib/lwt -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/opentelemetry -I /home/opam/.opam/5.4/lib/opentelemetry/atomic -I /home/opam/.opam/5.4/lib/opentelemetry/proto -I /home/opam/.opam/5.4/lib/pbrt -I /home/opam/.opam/5.4/lib/ptime -I /home/opam/.opam/5.4/lib/ptime/clock -no-alias-deps -o src/lwt/.opentelemetry_lwt.objs/byte/opentelemetry_lwt.cmo -c -impl src/lwt/opentelemetry_lwt.pp.ml)
# File "src/lwt/opentelemetry_lwt.ml", lines 26-33, characters 4-16:
# 26 | ....try%lwt
# 27 | let* rv = thunk () in
# 28 | let () = finally (Ok ()) in
# 29 | Lwt.return rv
# 30 | with e ->
# 31 | let bt = Printexc.get_raw_backtrace () in
# 32 | let () = finally (Error (Printexc.to_string e, bt)) in
# 33 | Lwt.fail e
# Error: This expression should not be a function, the expected type is string
<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions failed
| - build opentelemetry-lwt 0.10
+-
+- The following changes have been performed (the rest was aborted)
| - install ambient-context 0.1.0
| - install angstrom 0.16.1
| - install base v0.17.3
| - install base64 3.5.2
| - install bigstringaf 0.10.0
| - install cohttp 5.3.1
| - install cohttp-lwt 5.3.0
| - install hmap 0.8.1
| - install jsonm 1.0.2
| - install logs 0.10.0
| - install ocaml-syntax-shims 1.0.0
| - install ocaml_intrinsics_kernel v0.17.1
| - install ocamlbuild 0.16.1
| - install opentelemetry 0.10
| - install pbrt 3.1.1
| - install ppx_sexp_conv v0.17.1
| - install ppxlib_jane v0.17.4
| - install ptime 1.2.0
| - install re 1.14.0
| - install stringext 1.6.0
| - install topkg 1.1.1
| - install uri 4.4.0
| - install uri-sexp 4.4.0
| - install uutf 1.0.4
+-
# To update the current shell environment, run: eval $(opam env)
The former state can be restored with:
/usr/bin/opam switch import "/home/opam/.opam/5.4/.opam-switch/backup/state-20260127193338.export"
[WARNING] OPAMCONFIRMLEVEL was ignored because CLI 2.0 was requested and it was introduced in 2.1.
[WARNING] OPAMCONFIRMLEVEL was ignored because CLI 2.0 was requested and it was introduced in 2.1.
opam-repo-ci detected dependencies failing: opentelemetry-lwt.0.10
"/usr/bin/env" "bash" "-c" "opam reinstall opentelemetry-cohttp-lwt.0.10;
res=$?;
test "$res" != 31 && exit "$res";
export OPAMCLI=2.0;
build_dir=$(opam var prefix)/.opam-switch/build;
failed=$(ls "$build_dir");
partial_fails="";
for pkg in $failed; do
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.";
fi;
test "$pkg" != 'opentelemetry-cohttp-lwt.0.10' && partial_fails="$partial_fails $pkg";
done;
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}";
exit 1" failed with exit status 1
2026-01-27 19:34.55: Job failed: Failed: Build failed
2026-01-27 19:34.55: Log analysis:
2026-01-27 19:34.55: >>>
[ERROR] The compilation of opentelemetry-lwt.0.10 failed at "dune build -p opentelemetry-lwt -j 71 --promote-install-files=false @install".
(score = 20)
2026-01-27 19:34.55: >>>
# Error: This expression should not be a function, the expected type is string
(score = 48)
2026-01-27 19:34.55: >>>
opam-repo-ci detected dependencies failing: opentelemetry-lwt.0.10
(score = 75)
2026-01-27 19:34.55: opentelemetry-lwt.0.10 failed to build