(not at the head of any monitored branch or PR)
2025-02-10 18:22.38: New job: test opentelemetry-lwt.0.4 with lwt.5.8.1, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/27204/head (7ed2f1c01e376051eb0d1865dbb9ee4b512da765)
                              on debian-12-ocaml-4.14/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/27204/head" && git reset --hard 7ed2f1c0
git fetch origin master
git merge --no-edit 36f4d2d5ceb882a79fd7d7f956b490201da67226
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-12-ocaml-4.14@sha256:9b775b697973e1ebd27879dfd8615cebf1e59a04a21bc5655bc51ca0eeb7981d
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.5.8.1 5.8.1
RUN opam reinstall lwt.5.8.1; \
    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-12\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'lwt.5.8.1' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall opentelemetry-lwt.0.4; \
    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-12\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'opentelemetry-lwt.0.4' && 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-lwt.0.4) || true
RUN opam reinstall --with-test --verbose opentelemetry-lwt.0.4; \
    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-12\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'opentelemetry-lwt.0.4' && 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 .

2025-02-10 18:22.38: Using cache hint "ocaml/opam:debian-12-ocaml-4.14@sha256:9b775b697973e1ebd27879dfd8615cebf1e59a04a21bc5655bc51ca0eeb7981d-lwt.5.8.1-opentelemetry-lwt.0.4-7ed2f1c01e376051eb0d1865dbb9ee4b512da765"
2025-02-10 18:22.38: Using OBuilder spec:
((from ocaml/opam:debian-12-ocaml-4.14@sha256:9b775b697973e1ebd27879dfd8615cebf1e59a04a21bc5655bc51ca0eeb7981d)
 (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.5.8.1 5.8.1"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall lwt.5.8.1;\
             \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-12\\\"\"; 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.5.8.1' && 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-lwt.0.4;\
             \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-12\\\"\"; 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-lwt.0.4' && 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-lwt.0.4) || true"))
 (run (shell  "opam reinstall --with-test --verbose opentelemetry-lwt.0.4;\
             \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-12\\\"\"; 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-lwt.0.4' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2025-02-10 18:22.38: Waiting for resource in pool OCluster
2025-02-11 06:23.47: Waiting for worker…
2025-02-11 06:25.53: Got resource from pool OCluster
Building on asteria.caelum.ci.dev
All commits already cached
Updating files:  81% (18946/23305)
Updating files:  82% (19111/23305)
Updating files:  83% (19344/23305)
Updating files:  84% (19577/23305)
Updating files:  85% (19810/23305)
Updating files:  86% (20043/23305)
Updating files:  87% (20276/23305)
Updating files:  88% (20509/23305)
Updating files:  89% (20742/23305)
Updating files:  90% (20975/23305)
Updating files:  91% (21208/23305)
Updating files:  92% (21441/23305)
Updating files:  93% (21674/23305)
Updating files:  94% (21907/23305)
Updating files:  95% (22140/23305)
Updating files:  96% (22373/23305)
Updating files:  97% (22606/23305)
Updating files:  98% (22839/23305)
Updating files:  99% (23072/23305)
Updating files: 100% (23305/23305)
Updating files: 100% (23305/23305), done.
HEAD is now at 36f4d2d5ce Merge pull request #27169 from Frigory33/release-allegro5-0.1
Merge made by the 'ort' strategy.
 packages/lwt/lwt.5.8.1/opam         | 63 +++++++++++++++++++++++++++++++++++++
 packages/lwt_ppx/lwt_ppx.5.8.1/opam | 41 ++++++++++++++++++++++++
 2 files changed, 104 insertions(+)
 create mode 100644 packages/lwt/lwt.5.8.1/opam
 create mode 100644 packages/lwt_ppx/lwt_ppx.5.8.1/opam

(from ocaml/opam:debian-12-ocaml-4.14@sha256:9b775b697973e1ebd27879dfd8615cebf1e59a04a21bc5655bc51ca0eeb7981d)
Unable to find image 'ocaml/opam:debian-12-ocaml-4.14@sha256:9b775b697973e1ebd27879dfd8615cebf1e59a04a21bc5655bc51ca0eeb7981d' locally
docker.io/ocaml/opam@sha256:9b775b697973e1ebd27879dfd8615cebf1e59a04a21bc5655bc51ca0eeb7981d: Pulling from ocaml/opam
ab215bc27ffe: Pulling fs layer
ab215bc27ffe: Waiting
ab215bc27ffe: Verifying Checksum
ab215bc27ffe: Download complete
ab215bc27ffe: Pull complete
Digest: sha256:9b775b697973e1ebd27879dfd8615cebf1e59a04a21bc5655bc51ca0eeb7981d
Status: Downloaded newer image for ocaml/opam@sha256:9b775b697973e1ebd27879dfd8615cebf1e59a04a21bc5655bc51ca0eeb7981d
2025-02-11 06:28.48 ---> using "25d8f449c53ac4ceb7bc92684a0577e52cccab1d904fe59a3f2b38a998bb7c0f" from cache

/: (user (uid 1000) (gid 1000))

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2025-02-11 06:28.48 ---> using "be316ff3087e322d5edf5e479ca2bb8052e57dac7da86697d7f8c7fc08d617c2" 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 development 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
[NOTE] The 'jobs' option was reset, its value was 39 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
           opam option jobs=39 --global
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[opam-repository-archive] no changes from git+https://github.com/ocaml/opam-repository-archive
[default] synchronised from file:///home/opam/opam-repository
2025-02-11 06:28.48 ---> using "78dff1ff214a8909f5b6720239cc4fb75ed3bd90557050aaa7bbd7375dd3bf63" 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.4.0~alpha1~dev (747e73667ad9d054b0f736be205c0013e1bec087)
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=debian os-version=12
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 255
# repositories         1 (local), 1 (version-controlled)
# pinned               1 (version)
# current-switch       4.14
# invariant            ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages    ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       4.14.2
2025-02-11 06:28.48 ---> using "42ef77ebd2048818144ba8d58252f49e8b92703b0b80205848405f4abd9f903d" 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/"))
2025-02-11 06:28.48 ---> using "4b3cb41d1af76d91110e76cf5db8b63f1b68c10eb889268ee993154c693c4eef" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2025-02-11 06:28.49 ---> using "4bb023bcf26546c2e7add79de63aea1aa60fb2cbbe7f50eb24de470ebced2251" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-02-11 06:28.49 ---> using "e40844c8ba73d143dcb4fe9bbf61606a54410a1cc1b69ee6d4539d5220c6c41e" 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 bookworm InRelease
- Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB]
- Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB]
- Get:4 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [245 kB]
- Fetched 348 kB in 0s (1053 kB/s)
- Reading package lists...
2025-02-11 06:28.49 ---> using "aef1f5c3354214045fa092e73500771ed3a521bff36d846f03b685d252f642c0" from cache

/home/opam: (run (shell "opam pin add -k version -yn lwt.5.8.1 5.8.1"))
lwt is now pinned to version 5.8.1
2025-02-11 06:28.49 ---> using "66ed3ed7a31012a228ffd2fba146b14103102cf777f8d5cc4804279a88ce3c32" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall lwt.5.8.1;\
                        \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-12\\\"\"; 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.5.8.1' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
lwt.5.8.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 8 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.17.2         [required by lwt]
  - install dune-configurator 3.17.2         [required by lwt]
  - install lwt               5.8.1 (pinned)
  - install ocamlfind         1.9.8          [required by base-bytes]
  - install ocplib-endian     1.2            [required by lwt]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved cppo.1.8.0  (cached)
-> retrieved csexp.1.5.2  (cached)
-> retrieved dune.3.17.2, dune-configurator.3.17.2  (cached)
-> retrieved lwt.5.8.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ocplib-endian.1.2  (cached)
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed dune.3.17.2
-> installed csexp.1.5.2
-> installed cppo.1.8.0
-> installed ocplib-endian.1.2
-> installed dune-configurator.3.17.2
-> installed lwt.5.8.1
Done.
# To update the current shell environment, run: eval $(opam env)
2025-02-11 06:28.49 ---> using "ed4f21a36e94501a6f7173da6a6c33023b0e7b0cc0579343f9bd10c46dc9e26d" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall opentelemetry-lwt.0.4;\
                        \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-12\\\"\"; 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-lwt.0.4' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
opentelemetry-lwt.0.4 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 7 packages
  - install ocamlbuild        0.15.0 [required by ptime]
  - install opentelemetry     0.4    [required by opentelemetry-lwt]
  - install opentelemetry-lwt 0.4
  - install pbrt              2.4    [required by opentelemetry]
  - install ptime             1.2.0  [required by opentelemetry]
  - install stdlib-shims      0.3.0  [required by pbrt]
  - install topkg             1.0.7  [required by ptime]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ocamlbuild.0.15.0  (cached)
-> retrieved opentelemetry.0.4, opentelemetry-lwt.0.4  (cached)
-> retrieved pbrt.2.4  (cached)
-> retrieved ptime.1.2.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved topkg.1.0.7  (cached)
-> installed stdlib-shims.0.3.0
-> installed pbrt.2.4
-> installed ocamlbuild.0.15.0
-> installed topkg.1.0.7
-> installed ptime.1.2.0
-> installed opentelemetry.0.4
-> installed opentelemetry-lwt.0.4
Done.

<><> pbrt.2.4 installed successfully ><><><><><><><><><><><><><><><><><><><><><>
=> Pbrt: runtime library for ocaml-protoc.

   A shim library named "ocaml-protoc" still exists, to ease the
   migration.
# To update the current shell environment, run: eval $(opam env)
2025-02-11 06:29.09 ---> saved as "bb1e0a2ff6cf3eba89436ee5a405c8d315f727558f996f26c473d463f120d773"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test opentelemetry-lwt.0.4) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile opentelemetry-lwt   0.4
=== install 52 packages
  - install   angstrom            0.16.1  [required by uri]
  - install   asn1-combinators    0.3.2   [required by x509]
  - install   astring             0.8.5   [required by conduit]
  - install   base                v0.16.3 [required by ppx_sexp_conv]
  - install   base64              3.5.1   [required by cohttp]
  - install   bigstringaf         0.10.0  [required by angstrom]
  - install   bos                 0.2.1   [required by ca-certs]
  - install   ca-certs            1.0.0   [required by conduit-lwt-unix]
  - install   cmdliner            1.3.0   [required by cohttp-lwt-unix]
  - install   cohttp              6.0.0   [required by cohttp-lwt-unix]
  - install   cohttp-lwt          6.0.0   [required by cohttp-lwt-unix]
  - install   cohttp-lwt-unix     6.0.0   [required by opentelemetry-lwt]
  - install   conduit             7.1.0   [required by conduit-lwt]
  - install   conduit-lwt         7.1.0   [required by cohttp-lwt-unix]
  - install   conduit-lwt-unix    7.1.0   [required by cohttp-lwt-unix]
  - install   conf-bash           1       [required by base]
  - install   conf-gmp            4       [required by conf-gmp-powm-sec, zarith]
  - install   conf-gmp-powm-sec   3       [required by mirage-crypto-pk]
  - install   conf-pkg-config     4       [required by zarith]
  - install   digestif            1.2.0   [required by ca-certs]
  - install   domain-name         0.4.0   [required by ipaddr, x509]
  - install   duration            0.2.1   [required by mirage-crypto-rng]
  - install   eqaf                0.10    [required by digestif, mirage-crypto]
  - install   fmt                 0.9.0   [required by cohttp-lwt-unix]
  - install   fpath               0.7.3   [required by ca-certs]
  - install   gmap                0.3.0   [required by x509]
  - install   http                6.0.0   [required by cohttp-lwt-unix]
  - install   ipaddr              5.6.0   [required by conduit-lwt-unix]
  - install   ipaddr-sexp         5.6.0   [required by conduit-lwt-unix]
  - install   kdf                 1.0.0   [required by x509]
  - install   logs                0.7.0   [required by cohttp-lwt-unix]
  - install   macaddr             5.6.0   [required by ipaddr]
  - install   magic-mime          1.3.1   [required by cohttp-lwt-unix]
  - install   mirage-crypto       2.0.0   [required by ca-certs]
  - install   mirage-crypto-ec    2.0.0   [required by x509]
  - install   mirage-crypto-pk    2.0.0   [required by x509]
  - install   mirage-crypto-rng   2.0.0   [required by x509]
  - install   ocaml-compiler-libs v0.12.4 [required by ppxlib]
  - install   ocaml-syntax-shims  1.0.0   [required by angstrom]
  - install   ohex                0.2.0   [required by ca-certs]
  - install   ppx_derivers        1.2.1   [required by ppxlib]
  - install   ppx_sexp_conv       v0.16.0 [required by cohttp-lwt-unix]
  - install   ppxlib              0.35.0  [required by ppx_sexp_conv]
  - install   re                  1.12.0  [required by cohttp]
  - install   rresult             0.7.0   [required by bos]
  - install   seq                 base    [required by re]
  - install   sexplib0            v0.16.0 [required by cohttp-lwt, cohttp, conduit-lwt]
  - install   stringext           1.6.0   [required by cohttp]
  - install   uri                 4.4.0   [required by cohttp-lwt, cohttp, conduit-lwt-unix]
  - install   uri-sexp            4.4.0   [required by cohttp]
  - install   x509                1.0.5   [required by ca-certs]
  - install   zarith              1.14    [required by mirage-crypto-pk]

The following system packages will first need to be installed:
    libgmp-dev pkg-config

<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>

opam believes some required external dependencies are missing. opam can:
> 1. Run apt-get to install them (may need root/sudo access)
  2. Display the recommended apt-get command and wait while you run it manually (e.g. in another terminal)
  3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
  4. Abort the installation

[1/2/3/4] 1

+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "libgmp-dev" "pkg-config"
- debconf: delaying package configuration, since apt-utils is not installed
- Selecting previously unselected package libgmpxx4ldbl:amd64.
- (Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 18745 files and directories currently installed.)
- Preparing to unpack .../0-libgmpxx4ldbl_2%3a6.2.1+dfsg1-1.1_amd64.deb ...
- Unpacking libgmpxx4ldbl:amd64 (2:6.2.1+dfsg1-1.1) ...
- Selecting previously unselected package libgmp-dev:amd64.
- Preparing to unpack .../1-libgmp-dev_2%3a6.2.1+dfsg1-1.1_amd64.deb ...
- Unpacking libgmp-dev:amd64 (2:6.2.1+dfsg1-1.1) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../2-libpkgconf3_1.8.1-1_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-1) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../3-pkgconf-bin_1.8.1-1_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-1) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../4-pkgconf_1.8.1-1_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-1) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../5-pkg-config_1.8.1-1_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-1) ...
- Setting up libpkgconf3:amd64 (1.8.1-1) ...
- Setting up libgmpxx4ldbl:amd64 (2:6.2.1+dfsg1-1.1) ...
- Setting up pkgconf-bin (1.8.1-1) ...
- Setting up libgmp-dev:amd64 (2:6.2.1+dfsg1-1.1) ...
- Setting up pkgconf:amd64 (1.8.1-1) ...
- Setting up pkg-config:amd64 (1.8.1-1) ...
- Processing triggers for libc-bin (2.36-9+deb12u9) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved angstrom.0.16.1  (https://github.com/inhabitedtype/angstrom/archive/0.16.1.tar.gz)
-> retrieved asn1-combinators.0.3.2  (https://github.com/mirleft/ocaml-asn1-combinators/releases/download/v0.3.2/asn1-combinators-0.3.2.tbz)
-> retrieved astring.0.8.5  (https://erratique.ch/software/astring/releases/astring-0.8.5.tbz)
-> retrieved base.v0.16.3  (https://github.com/janestreet/base/archive/refs/tags/v0.16.3.tar.gz)
-> installed asn1-combinators.0.3.2
-> retrieved base64.3.5.1  (https://github.com/mirage/ocaml-base64/releases/download/v3.5.1/base64-3.5.1.tbz)
-> retrieved bigstringaf.0.10.0  (https://github.com/inhabitedtype/bigstringaf/archive/0.10.0.tar.gz)
-> retrieved bos.0.2.1  (https://erratique.ch/software/bos/releases/bos-0.2.1.tbz)
-> installed base64.3.5.1
-> installed astring.0.8.5
-> installed bigstringaf.0.10.0
-> retrieved ca-certs.1.0.0  (https://github.com/mirage/ca-certs/releases/download/v1.0.0/ca-certs-1.0.0.tbz)
-> retrieved cmdliner.1.3.0  (https://erratique.ch/software/cmdliner/releases/cmdliner-1.3.0.tbz)
-> retrieved cohttp.6.0.0, cohttp-lwt.6.0.0, cohttp-lwt-unix.6.0.0, http.6.0.0  (https://github.com/mirage/ocaml-cohttp/releases/download/v6.0.0/cohttp-6.0.0.tbz)
-> retrieved conduit.7.1.0, conduit-lwt.7.1.0, conduit-lwt-unix.7.1.0  (https://github.com/mirage/ocaml-conduit/releases/download/v7.1.0/conduit-7.1.0.tbz)
-> installed http.6.0.0
-> installed conf-bash.1
-> retrieved conf-gmp.4  (https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/conf-gmp/test.c.4)
-> retrieved conf-gmp-powm-sec.3  (https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/conf-gmp-powm-sec/test.c.3)
-> installed conf-gmp.4
-> installed conf-pkg-config.4
-> installed conf-gmp-powm-sec.3
-> retrieved digestif.1.2.0  (https://github.com/mirage/digestif/releases/download/v1.2.0/digestif-1.2.0.tbz)
-> retrieved domain-name.0.4.0  (https://github.com/hannesm/domain-name/releases/download/v0.4.0/domain-name-0.4.0.tbz)
-> installed cmdliner.1.3.0
-> retrieved duration.0.2.1  (https://github.com/hannesm/duration/releases/download/v0.2.1/duration-0.2.1.tbz)
-> installed domain-name.0.4.0
-> installed duration.0.2.1
-> retrieved eqaf.0.10  (https://github.com/mirage/eqaf/releases/download/v0.10/eqaf-0.10.tbz)
-> retrieved fmt.0.9.0  (https://erratique.ch/software/fmt/releases/fmt-0.9.0.tbz)
-> retrieved fpath.0.7.3  (https://erratique.ch/software/fpath/releases/fpath-0.7.3.tbz)
-> installed eqaf.0.10
-> retrieved gmap.0.3.0  (https://github.com/hannesm/gmap/releases/download/0.3.0/gmap-0.3.0.tbz)
-> installed gmap.0.3.0
-> installed fpath.0.7.3
-> retrieved ipaddr.5.6.0, ipaddr-sexp.5.6.0, macaddr.5.6.0  (https://github.com/mirage/ocaml-ipaddr/releases/download/v5.6.0/ipaddr-5.6.0.tbz)
-> installed fmt.0.9.0
-> installed digestif.1.2.0
-> installed macaddr.5.6.0
-> retrieved kdf.1.0.0  (https://github.com/robur-coop/kdf/releases/download/v1.0.0/kdf-1.0.0.tbz)
-> retrieved logs.0.7.0  (https://erratique.ch/software/logs/releases/logs-0.7.0.tbz)
-> retrieved magic-mime.1.3.1  (https://github.com/mirage/ocaml-magic-mime/releases/download/v1.3.1/magic-mime-1.3.1.tbz)
-> installed ipaddr.5.6.0
-> installed magic-mime.1.3.1
-> installed logs.0.7.0
-> retrieved mirage-crypto.2.0.0, mirage-crypto-ec.2.0.0, mirage-crypto-pk.2.0.0, mirage-crypto-rng.2.0.0  (https://github.com/mirage/mirage-crypto/releases/download/v2.0.0/mirage-crypto-2.0.0.tbz)
-> retrieved ocaml-compiler-libs.v0.12.4  (https://github.com/janestreet/ocaml-compiler-libs/releases/download/v0.12.4/ocaml-compiler-libs-v0.12.4.tbz)
-> retrieved ocaml-syntax-shims.1.0.0  (https://github.com/ocaml-ppx/ocaml-syntax-shims/releases/download/1.0.0/ocaml-syntax-shims-1.0.0.tbz)
-> retrieved ohex.0.2.0  (https://github.com/ocaml/opam-source-archives/raw/main/ohex-0.2.0.tar.gz)
-> installed ohex.0.2.0
-> installed ocaml-compiler-libs.v0.12.4
-> retrieved opentelemetry-lwt.0.4  (https://github.com/imandra-ai/ocaml-opentelemetry/archive/v0.4.tar.gz)
-> installed mirage-crypto.2.0.0
-> retrieved ppx_derivers.1.2.1  (https://github.com/ocaml-ppx/ppx_derivers/archive/1.2.1.tar.gz)
-> installed ocaml-syntax-shims.1.0.0
-> retrieved ppx_sexp_conv.v0.16.0  (https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_sexp_conv-v0.16.0.tar.gz)
-> installed kdf.1.0.0
-> installed ppx_derivers.1.2.1
-> installed mirage-crypto-rng.2.0.0
-> installed angstrom.0.16.1
-> retrieved ppxlib.0.35.0  (https://github.com/ocaml-ppx/ppxlib/releases/download/0.35.0/ppxlib-0.35.0.tbz)
-> retrieved re.1.12.0  (https://github.com/ocaml/ocaml-re/releases/download/1.12.0/re-1.12.0.tbz)
-> retrieved rresult.0.7.0  (https://erratique.ch/software/rresult/releases/rresult-0.7.0.tbz)
-> retrieved seq.base  (2 extra sources)
-> retrieved seq.base  (2 extra sources)
-> installed seq.base
-> retrieved sexplib0.v0.16.0  (https://ocaml.janestreet.com/ocaml-core/v0.16/files/sexplib0-v0.16.0.tar.gz)
-> installed rresult.0.7.0
-> retrieved stringext.1.6.0  (https://github.com/rgrinberg/stringext/releases/download/1.6.0/stringext-1.6.0.tbz)
-> installed sexplib0.v0.16.0
-> removed   opentelemetry-lwt.0.4
-> installed stringext.1.6.0
-> retrieved uri.4.4.0, uri-sexp.4.4.0  (https://github.com/mirage/ocaml-uri/releases/download/v4.4.0/uri-4.4.0.tbz)
-> installed re.1.12.0
-> retrieved x509.1.0.5  (https://github.com/mirleft/ocaml-x509/releases/download/v1.0.5/x509-1.0.5.tbz)
-> retrieved zarith.1.14  (https://github.com/ocaml/Zarith/archive/release-1.14.tar.gz)
-> installed uri.4.4.0
-> installed bos.0.2.1
-> installed mirage-crypto-ec.2.0.0
-> installed zarith.1.14
-> installed mirage-crypto-pk.2.0.0
-> installed base.v0.16.3
-> installed x509.1.0.5
-> installed ca-certs.1.0.0
-> installed ppxlib.0.35.0
-> installed ppx_sexp_conv.v0.16.0
-> installed ipaddr-sexp.5.6.0
-> installed uri-sexp.4.4.0
-> installed conduit.7.1.0
-> installed cohttp.6.0.0
-> installed conduit-lwt.7.1.0
-> installed cohttp-lwt.6.0.0
-> installed conduit-lwt-unix.7.1.0
-> installed cohttp-lwt-unix.6.0.0
-> installed opentelemetry-lwt.0.4
Done.
# To update the current shell environment, run: eval $(opam env)
2025-02-11 06:30.00 ---> saved as "036ae006792d3b7678e882b41156d794beb9dda32bd34df16dfc9fe11b53186d"

/home/opam: (run (shell  "opam reinstall --with-test --verbose opentelemetry-lwt.0.4;\
                        \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-12\\\"\"; 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-lwt.0.4' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
The following actions will be performed:
=== recompile 1 package
  - recompile opentelemetry-lwt 0.4

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [opentelemetry-lwt.0.4: extract]
-> retrieved opentelemetry-lwt.0.4  (cached)
Processing  2/4: [opentelemetry-lwt: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "opentelemetry-lwt" "-j" "255" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/opentelemetry-lwt.0.4)
-> compiled  opentelemetry-lwt.0.4
-> removed   opentelemetry-lwt.0.4
-> installed opentelemetry-lwt.0.4
Done.
# To update the current shell environment, run: eval $(opam env)
2025-02-11 06:30.08 ---> saved as "c550b5f4708c768bd5021ded9f502f181457a0b8dca08217817cc3cd5f26611c"
Job succeeded
2025-02-11 06:30.18: Job succeeded