Build:
  1. 1
  2. 0
2026-04-21 21:51.20: New job: test opentelemetry-client.0.91, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29755/head (5828080b1c0f035148ce67c80be62713993296c7)
                              on debian-13-ocaml-5.4-afl/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/29755/head" && git reset --hard 5828080b
git fetch origin master
git merge --no-edit 1865f43829b076444382bc4991257c76e72fdf69
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4-afl@sha256:32752d951a824fbab38e6a88107804e135b134ea39180a823e4ceec061ce84a1
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 opentelemetry-client.0.91 0.91
RUN opam reinstall opentelemetry-client.0.91; \
    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-client.0.91' && 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-client.0.91) || true
RUN opam reinstall --with-test --verbose opentelemetry-client.0.91; \
    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-client.0.91' && 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-04-21 21:51.20: Using cache hint "ocaml/opam:debian-13-ocaml-5.4-afl@sha256:32752d951a824fbab38e6a88107804e135b134ea39180a823e4ceec061ce84a1-opentelemetry-client.0.91-5828080b1c0f035148ce67c80be62713993296c7"
2026-04-21 21:51.20: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4-afl@sha256:32752d951a824fbab38e6a88107804e135b134ea39180a823e4ceec061ce84a1)
 (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 opentelemetry-client.0.91 0.91"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall opentelemetry-client.0.91;\
             \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-client.0.91' && 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-client.0.91) || true"))
 (run (shell  "opam reinstall --with-test --verbose opentelemetry-client.0.91;\
             \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-client.0.91' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-04-21 21:51.20: Waiting for resource in pool OCluster
2026-04-21 22:00.03: Waiting for worker…
2026-04-21 22:15.07: Got resource from pool OCluster
Building on laodoke.caelum.ci.dev
All commits already cached
HEAD is now at 1865f43829 Merge pull request #29762 from kit-ty-kate/grenier-ocaml-5.5
Merge made by the 'ort' strategy.
 .../opentelemetry-client-cohttp-eio.0.91/opam      | 50 +++++++++++++++++++++
 .../opentelemetry-client-cohttp-lwt.0.91/opam      | 48 ++++++++++++++++++++
 .../opentelemetry-client-ocurl-lwt.0.91/opam       | 48 ++++++++++++++++++++
 .../opentelemetry-client-ocurl.0.91/opam           | 45 +++++++++++++++++++
 .../opentelemetry-client.0.91/opam                 | 39 +++++++++++++++++
 .../opentelemetry-cohttp-lwt.0.91/opam             | 43 ++++++++++++++++++
 .../opentelemetry-logs.0.91/opam                   | 43 ++++++++++++++++++
 .../opentelemetry-lwt/opentelemetry-lwt.0.91/opam  | 43 ++++++++++++++++++
 packages/opentelemetry/opentelemetry.0.91/opam     | 51 ++++++++++++++++++++++
 9 files changed, 410 insertions(+)
 create mode 100644 packages/opentelemetry-client-cohttp-eio/opentelemetry-client-cohttp-eio.0.91/opam
 create mode 100644 packages/opentelemetry-client-cohttp-lwt/opentelemetry-client-cohttp-lwt.0.91/opam
 create mode 100644 packages/opentelemetry-client-ocurl-lwt/opentelemetry-client-ocurl-lwt.0.91/opam
 create mode 100644 packages/opentelemetry-client-ocurl/opentelemetry-client-ocurl.0.91/opam
 create mode 100644 packages/opentelemetry-client/opentelemetry-client.0.91/opam
 create mode 100644 packages/opentelemetry-cohttp-lwt/opentelemetry-cohttp-lwt.0.91/opam
 create mode 100644 packages/opentelemetry-logs/opentelemetry-logs.0.91/opam
 create mode 100644 packages/opentelemetry-lwt/opentelemetry-lwt.0.91/opam
 create mode 100644 packages/opentelemetry/opentelemetry.0.91/opam

(from ocaml/opam:debian-13-ocaml-5.4-afl@sha256:32752d951a824fbab38e6a88107804e135b134ea39180a823e4ceec061ce84a1)
Unable to find image 'ocaml/opam:debian-13-ocaml-5.4-afl@sha256:32752d951a824fbab38e6a88107804e135b134ea39180a823e4ceec061ce84a1' locally
docker.io/ocaml/opam@sha256:32752d951a824fbab38e6a88107804e135b134ea39180a823e4ceec061ce84a1: Pulling from ocaml/opam
a7730063fcfe: Already exists
4ee4710ec793: Already exists
9bffbdd66231: Already exists
cbcc548423e6: Already exists
fe2acedc347c: Already exists
d316a4b5f6c7: Already exists
a7185b084615: Already exists
8f2e4b898a82: Already exists
c45b7ac3ea87: Already exists
7e67b51417c7: Already exists
bd7b73c72643: Already exists
6c18a46bf2ad: Already exists
f9e34f2a66c9: Already exists
d9ef36e01586: Already exists
97b411d0e48e: Already exists
7a801e16329f: Already exists
19d23084d713: Already exists
19d23084d713: Already exists
5a7e5c66431e: Already exists
70ef9a276312: Already exists
9ae2c497c2b0: Already exists
e8976e43e08e: Already exists
4f4fb700ef54: Already exists
c604dd6b8c73: Already exists
1eb18e837245: Already exists
255f5a23564e: Already exists
3f89e8909570: Already exists
132eabb3a260: Already exists
493b36718743: Already exists
969b57e3419b: Already exists
149edab32f52: Already exists
bd180ee6bae9: Already exists
cc8dae61ae77: Already exists
60d736b82f5f: Already exists
37e6ecf610fb: Already exists
f5a753da3473: Already exists
36e535949899: Already exists
95ef206c9a71: Already exists
a70d32c06711: Already exists
5ee0fcdd42b0: Already exists
767e030306e7: Already exists
a31b41a45af1: Already exists
170ff9317be2: Already exists
74447d92440d: Already exists
cea408a802d3: Pulling fs layer
d42af34f8291: Pulling fs layer
696c37d5bb89: Pulling fs layer
029e5067c84b: Pulling fs layer
029e5067c84b: Waiting
d42af34f8291: Verifying Checksum
d42af34f8291: Download complete
696c37d5bb89: Verifying Checksum
696c37d5bb89: Download complete
029e5067c84b: Verifying Checksum
029e5067c84b: Download complete
cea408a802d3: Download complete
cea408a802d3: Pull complete
d42af34f8291: Pull complete
696c37d5bb89: Pull complete
029e5067c84b: Pull complete
Digest: sha256:32752d951a824fbab38e6a88107804e135b134ea39180a823e4ceec061ce84a1
Status: Downloaded newer image for ocaml/opam@sha256:32752d951a824fbab38e6a88107804e135b134ea39180a823e4ceec061ce84a1
2026-04-21 22:15.28 ---> saved as "4f5bc675570a617f114ce60eaf9ddeb8b9ffccb7c4dff0b947aa741d491e7357"

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-04-21 22:15.28 ---> saved as "fb3e56f9084c30b046a70248aa2766d5ad6b4a9866eb23538c9810d9f7d149fb"

/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-04-21 22:15.56 ---> saved as "b5091233cd98e4c98690a5a5ce75ec069e47b7ca252b83cfe999da32b8d4158f"

/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.1
# 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-variants" {= "5.4.1+options"}]
# compiler-packages    ocaml-compiler.5.4.1, ocaml-option-afl.1, ocaml-options-only-afl.1, ocaml-variants.5.4.1+options
# 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.1+options+afl
2026-04-21 22:15.57 ---> saved as "999ea54a448dbf9db5284e3041e066382f3dd60bf61c49d1b055ba7546ab33ec"

/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-04-21 22:16.11 ---> saved as "f37713efe355bad0ff97bdad248bb59fe066a31f29ea07806fe3c92e20c7b7e2"

/home/opam: (copy (src .) (dst opam-repository/))
2026-04-21 22:16.32 ---> saved as "a49ccf59eaeeb71305eb6779c29540d7a2abe87fa655f2f7a02ea659aca9379a"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-21 22:16.54 ---> saved as "34da6a277f1ec614ca9b16cb5c481116de52960c7666cb8bad6954dfa884135f"

/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 [125 kB]
- Fetched 216 kB in 0s (1570 kB/s)
- Reading package lists...
- 
2026-04-21 22:16.55 ---> saved as "2a9588f5e6f1a3095b3a70e1a05a8bd79333e7d8a0901e1c24e18857b985e833"

/home/opam: (run (shell "opam pin add -k version -yn opentelemetry-client.0.91 0.91"))
opentelemetry-client is now pinned to version 0.91
2026-04-21 22:16.57 ---> saved as "59ed71a71c712c3d6b8daabf9d30b6dd2f3818aad6a9216bd4befb2df0e7492f"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall opentelemetry-client.0.91;\
                        \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-client.0.91' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
opentelemetry-client.0.91 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 16 packages
  - install ambient-context      0.2           [required by opentelemetry]
  - install base64               3.5.2         [required by pbrt_yojson]
  - install dune                 3.22.2        [required by opentelemetry-client]
  - install hmap                 0.8.1         [required by opentelemetry]
  - install mtime                2.1.0         [required by opentelemetry]
  - install ocamlbuild           0.16.1        [required by mtime, ptime]
  - install ocamlfind            1.9.8         [required by mtime, ptime]
  - install opentelemetry        0.91          [required by opentelemetry-client]
  - install opentelemetry-client 0.91 (pinned)
  - install pbrt                 4.1           [required by opentelemetry]
  - install pbrt_yojson          4.1           [required by opentelemetry]
  - install ptime                1.2.0         [required by opentelemetry]
  - install stdlib-shims         0.3.0         [required by pbrt]
  - install thread-local-storage 0.2           [required by opentelemetry-client]
  - install topkg                1.1.1         [required by mtime, ptime]
  - install yojson               3.0.0         [required by pbrt_yojson]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ambient-context.0.2  (cached)
-> retrieved base64.3.5.2  (cached)
-> retrieved dune.3.22.2  (cached)
-> retrieved hmap.0.8.1  (cached)
-> retrieved mtime.2.1.0  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved opentelemetry.0.91, opentelemetry-client.0.91  (cached)
-> retrieved pbrt.4.1, pbrt_yojson.4.1  (cached)
-> retrieved ptime.1.2.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved thread-local-storage.0.2  (cached)
-> retrieved topkg.1.1.1  (cached)
-> retrieved yojson.3.0.0  (cached)
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed hmap.0.8.1
-> installed mtime.2.1.0
-> installed ptime.1.2.0
-> installed dune.3.22.2
-> installed stdlib-shims.0.3.0
-> installed base64.3.5.2
-> installed thread-local-storage.0.2
-> installed pbrt.4.1
-> installed ambient-context.0.2
-> installed yojson.3.0.0
-> installed pbrt_yojson.4.1
-> installed opentelemetry.0.91
-> installed opentelemetry-client.0.91
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-21 22:18.35 ---> saved as "fe42a3e208b39f450d036899c9bbc32ff6b9272834fb9f0605a2566a7dd987ed"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test opentelemetry-client.0.91) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile opentelemetry-client 0.91 (pinned)
=== install 7 packages
  - install   alcotest             1.9.1         [required by opentelemetry-client]
  - install   astring              0.8.5         [required by alcotest]
  - install   cmdliner             2.1.0         [required by alcotest]
  - install   fmt                  0.11.0        [required by alcotest]
  - install   ocaml-syntax-shims   1.0.0         [required by alcotest]
  - install   re                   1.14.0        [required by alcotest]
  - install   uutf                 1.0.4         [required by alcotest]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1  (https://opam.ocaml.org/cache)
-> retrieved astring.0.8.5  (https://opam.ocaml.org/cache)
-> retrieved cmdliner.2.1.0  (https://opam.ocaml.org/cache)
-> retrieved fmt.0.11.0  (https://opam.ocaml.org/cache)
-> retrieved ocaml-syntax-shims.1.0.0  (https://opam.ocaml.org/cache)
-> retrieved re.1.14.0  (https://opam.ocaml.org/cache)
-> retrieved uutf.1.0.4  (https://opam.ocaml.org/cache)
-> installed ocaml-syntax-shims.1.0.0
-> installed re.1.14.0
-> installed astring.0.8.5
-> removed   opentelemetry-client.0.91
-> installed cmdliner.2.1.0
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed alcotest.1.9.1
-> installed opentelemetry-client.0.91
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-21 22:19.10 ---> saved as "a3971a75e8a62dcdcb2fe27ef4817c545f53d73644bb544c8198c38387f046c9"

/home/opam: (run (shell  "opam reinstall --with-test --verbose opentelemetry-client.0.91;\
                        \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-client.0.91' && 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-client 0.91 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  2/4: [opentelemetry-client: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "opentelemetry-client" "-j" "71" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/opentelemetry-client.0.91)
-> compiled  opentelemetry-client.0.91
-> removed   opentelemetry-client.0.91
-> installed opentelemetry-client.0.91
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-21 22:19.18 ---> saved as "12338ee44fb8e9ba620f70ad9f85152ae32d3c8efb3a40fc6928df643ae515c0"
Job succeeded
2026-04-21 22:19.30: Job succeeded