(not at the head of any monitored branch or PR)
2026-04-02 19:47.45: New job: test opentelemetry-client-ocurl-lwt.0.90, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29633/head (e70d48a1952a7edcae52bb270d471ba97379795b)
                              on opensuse-15.6-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/29633/head" && git reset --hard e70d48a1
git fetch origin master
git merge --no-edit c0deda526f99d43a05c065e9218404492897c64b
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:opensuse-15.6-ocaml-5.4@sha256:ab892b8e19dfba582695a07fc8e4eaa0b80ebeb8d981b904de555257ae24fa6d
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-ocurl-lwt.0.90 0.90
RUN opam reinstall opentelemetry-client-ocurl-lwt.0.90; \
    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 "\"opensuse-15.6\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'opentelemetry-client-ocurl-lwt.0.90' && 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-ocurl-lwt.0.90) || true
RUN opam reinstall --with-test --verbose opentelemetry-client-ocurl-lwt.0.90; \
    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 "\"opensuse-15.6\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'opentelemetry-client-ocurl-lwt.0.90' && 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-02 19:47.45: Using cache hint "ocaml/opam:opensuse-15.6-ocaml-5.4@sha256:ab892b8e19dfba582695a07fc8e4eaa0b80ebeb8d981b904de555257ae24fa6d-opentelemetry-client-ocurl-lwt.0.90-e70d48a1952a7edcae52bb270d471ba97379795b"
2026-04-02 19:47.45: Using OBuilder spec:
((from ocaml/opam:opensuse-15.6-ocaml-5.4@sha256:ab892b8e19dfba582695a07fc8e4eaa0b80ebeb8d981b904de555257ae24fa6d)
 (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-ocurl-lwt.0.90 0.90"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall opentelemetry-client-ocurl-lwt.0.90;\
             \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 \"\\\"opensuse-15.6\\\"\"; 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-ocurl-lwt.0.90' && 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-ocurl-lwt.0.90) || true"))
 (run (shell  "opam reinstall --with-test --verbose opentelemetry-client-ocurl-lwt.0.90;\
             \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 \"\\\"opensuse-15.6\\\"\"; 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-ocurl-lwt.0.90' && 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-02 19:47.45: Waiting for resource in pool OCluster
2026-04-02 19:51.58: Waiting for worker…
2026-04-02 19:51.58: Got resource from pool OCluster
Building on doris.caelum.ci.dev
All commits already cached
HEAD is now at c0deda526f Merge pull request #29625 from xvw/release-lunar-v1.0.0
Updating c0deda526f..e70d48a195
Fast-forward
 .../opentelemetry-client-cohttp-eio.0.90/opam      | 48 ++++++++++++++++++++
 .../opentelemetry-client-cohttp-lwt.0.90/opam      | 48 ++++++++++++++++++++
 .../opentelemetry-client-ocurl-lwt.0.90/opam       | 48 ++++++++++++++++++++
 .../opentelemetry-client-ocurl.0.90/opam           | 45 +++++++++++++++++++
 .../opentelemetry-client.0.90/opam                 | 39 +++++++++++++++++
 .../opentelemetry-cohttp-lwt.0.90/opam             | 43 ++++++++++++++++++
 .../opentelemetry-logs.0.90/opam                   | 43 ++++++++++++++++++
 .../opentelemetry-lwt/opentelemetry-lwt.0.90/opam  | 43 ++++++++++++++++++
 packages/opentelemetry/opentelemetry.0.90/opam     | 51 ++++++++++++++++++++++
 9 files changed, 408 insertions(+)
 create mode 100644 packages/opentelemetry-client-cohttp-eio/opentelemetry-client-cohttp-eio.0.90/opam
 create mode 100644 packages/opentelemetry-client-cohttp-lwt/opentelemetry-client-cohttp-lwt.0.90/opam
 create mode 100644 packages/opentelemetry-client-ocurl-lwt/opentelemetry-client-ocurl-lwt.0.90/opam
 create mode 100644 packages/opentelemetry-client-ocurl/opentelemetry-client-ocurl.0.90/opam
 create mode 100644 packages/opentelemetry-client/opentelemetry-client.0.90/opam
 create mode 100644 packages/opentelemetry-cohttp-lwt/opentelemetry-cohttp-lwt.0.90/opam
 create mode 100644 packages/opentelemetry-logs/opentelemetry-logs.0.90/opam
 create mode 100644 packages/opentelemetry-lwt/opentelemetry-lwt.0.90/opam
 create mode 100644 packages/opentelemetry/opentelemetry.0.90/opam

(from ocaml/opam:opensuse-15.6-ocaml-5.4@sha256:ab892b8e19dfba582695a07fc8e4eaa0b80ebeb8d981b904de555257ae24fa6d)
Unable to find image 'ocaml/opam:opensuse-15.6-ocaml-5.4@sha256:ab892b8e19dfba582695a07fc8e4eaa0b80ebeb8d981b904de555257ae24fa6d' locally
docker.io/ocaml/opam@sha256:ab892b8e19dfba582695a07fc8e4eaa0b80ebeb8d981b904de555257ae24fa6d: Pulling from ocaml/opam
cf0250ddcb79: Already exists
40991fcd8a1b: Already exists
e05128dd3eb3: Already exists
3425e1313de9: Already exists
3ff42a08404d: Already exists
eaa7ec413ede: Already exists
60f83db70cd1: Already exists
e5a47a911091: Already exists
6327ccf3508c: Already exists
5d6981d3a5fa: Already exists
99922baa8ad6: Already exists
d6e0652ed47d: Already exists
95c8cc1fe90d: Already exists
9cd4fd406201: Already exists
e3a9e943b4f6: Already exists
aadf7e8e8d6a: Already exists
2dfff197ac70: Already exists
c3504cd6bbb5: Already exists
3c8f3f6b9b40: Already exists
4f4fb700ef54: Already exists
da5148c6a8cc: Already exists
cd4749025117: Already exists
41b38dff52ae: Already exists
de520dc36bc6: Already exists
fcdda9e04c1f: Already exists
73d3633f03ac: Already exists
ef339a4cc918: Already exists
5335cfb42bc8: Already exists
cfe95843ebf6: Already exists
6d988f80827f: Already exists
fbbad437eb63: Already exists
82c53910b2be: Already exists
0d9d82defd42: Already exists
fb8f37a4d801: Already exists
6e8c773a8be6: Already exists
371876dd87f9: Already exists
b7473f79970c: Already exists
7ae22122e76c: Already exists
68bfb5598785: Pulling fs layer
cfc6fe50ae83: Pulling fs layer
2a1815368dab: Pulling fs layer
681f802a4d53: Pulling fs layer
ee4435c9a0b2: Pulling fs layer
4e89b11a1ef6: Pulling fs layer
218cf6bcb4ae: Pulling fs layer
4e89b11a1ef6: Waiting
ee4435c9a0b2: Waiting
218cf6bcb4ae: Waiting
681f802a4d53: Waiting
68bfb5598785: Verifying Checksum
68bfb5598785: Download complete
68bfb5598785: Pull complete
2a1815368dab: Verifying Checksum
2a1815368dab: Download complete
cfc6fe50ae83: Verifying Checksum
cfc6fe50ae83: Download complete
cfc6fe50ae83: Pull complete
ee4435c9a0b2: Download complete
2a1815368dab: Pull complete
4e89b11a1ef6: Verifying Checksum
4e89b11a1ef6: Download complete
218cf6bcb4ae: Verifying Checksum
218cf6bcb4ae: Download complete
681f802a4d53: Verifying Checksum
681f802a4d53: Download complete
681f802a4d53: Pull complete
ee4435c9a0b2: Pull complete
4e89b11a1ef6: Pull complete
218cf6bcb4ae: Pull complete
Digest: sha256:ab892b8e19dfba582695a07fc8e4eaa0b80ebeb8d981b904de555257ae24fa6d
Status: Downloaded newer image for ocaml/opam@sha256:ab892b8e19dfba582695a07fc8e4eaa0b80ebeb8d981b904de555257ae24fa6d
2026-04-02 19:52.47 ---> using "e7a3b3d67b5578edf9324e9b59ca0d7aa787a0be0d86578e70e91b388f8ec84a" 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-04-02 19:52.47 ---> using "58dc043c890af18d974f9d2faab21126101bcb281794322c9b8f8c57a3613f9a" 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
[NOTE] The 'jobs' option was reset, its value was 71 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=71 --global
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-04-02 19:52.47 ---> using "244af0c4540a33894ed59d295029ce18cd452b092d29c5d57700cc0b284fee49" 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=opensuse-leap os-version=15.6
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 255
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       5.4
# invariant            ["ocaml-base-compiler" {= "5.4.1"}]
# compiler-packages    ocaml-base-compiler.5.4.1, ocaml-compiler.5.4.1, 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.1
2026-04-02 19:52.47 ---> using "4a851a3ae281f821ba9ff63148707c936d034a84b1981f5feef9df24d219d549" 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-04-02 19:52.47 ---> using "2a771c0ad1bfe0919b38a1cb3561270884c2d5b0edc13a0031f5eab75ec36433" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-04-02 19:52.47 ---> using "482141a257c676e1106d23dc2529b52c69b08c8790e718e1e147e719ec25c8a7" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-02 19:52.47 ---> using "9cabf71dd7dd264e2bd7446a1c15729f8726dd7139ce04837864b983d5d0fe43" from cache

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "zypper" "--non-interactive" "refresh"
- Retrieving repository 'Update repository of openSUSE Backports' metadata [..
- Looking for gpg keys in repository Update repository of openSUSE Backports.
-   gpgkey=http://download.opensuse.org/update/leap/15.6/backports/repodata/repomd.xml.key
- ...
- .....
- ....
- ....
- ....
- ............done]
- Building repository 'Update repository of openSUSE Backports' cache [..
- ..done]
- Retrieving repository 'Update repository with updates from SUSE Linux Enterprise 15' metadata [..
- Looking for gpg keys in repository Update repository with updates from SUSE Linux Enterprise 15.
-   gpgkey=http://download.opensuse.org/update/leap/15.6/sle/repodata/repomd.xml.key
- ..
- .....
- ....
- ....
- ....
- ....
- ....
- .................
- .........
- ..........
- ..........
- ..........
- ..........
- ..........
- ...........
- ........done]
- Building repository 'Update repository with updates from SUSE Linux Enterprise 15' cache [..
- ..done]
- Repository 'Main Update Repository' is up to date.
- Repository 'Update Repository (Non-Oss)' is up to date.
- Repository 'Non-OSS Repository' is up to date.
- Repository 'Main Repository' is up to date.
- All repositories have been refreshed.
2026-04-02 19:52.47 ---> using "f06fea061521297db8c58710b1e90a2c9bc9c2c2b76018b4efbbef949f55dc6f" from cache

/home/opam: (run (shell "opam pin add -k version -yn opentelemetry-client-ocurl-lwt.0.90 0.90"))
opentelemetry-client-ocurl-lwt is now pinned to version 0.90
2026-04-02 19:52.47 ---> using "ff477e85df2eb62186d2f5e25d305c3115aa03addc145a507736c81be3c4c4bb" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall opentelemetry-client-ocurl-lwt.0.90;\
                        \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 \"\\\"opensuse-15.6\\\"\"; 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-ocurl-lwt.0.90' && 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-ocurl-lwt.0.90 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 33 packages
  - install ambient-context                0.2           [required by ambient-context-lwt, opentelemetry]
  - install ambient-context-lwt            0.2           [required by opentelemetry-client-ocurl-lwt]
  - install base-bytes                     base          [required by ocplib-endian]
  - install base64                         3.5.2         [required by pbrt_yojson]
  - install conf-libcurl                   2             [required by ocurl]
  - install cppo                           1.8.0         [required by lwt]
  - install csexp                          1.5.2         [required by dune-configurator]
  - install dune                           3.22.0        [required by opentelemetry-client-ocurl-lwt]
  - install dune-configurator              3.22.0        [required by lwt]
  - install ezcurl                         0.3           [required by ezcurl-lwt]
  - install ezcurl-lwt                     0.3           [required by opentelemetry-client-ocurl-lwt]
  - install hmap                           0.8.1         [required by opentelemetry]
  - install lwt                            5.9.2         [required by opentelemetry-client-ocurl-lwt]
  - install lwt_ppx                        5.9.3         [required by opentelemetry-client-ocurl-lwt]
  - install mtime                          2.1.0         [required by opentelemetry-client-ocurl-lwt]
  - install ocaml-compiler-libs            v0.17.0       [required by ppxlib]
  - install ocamlbuild                     0.16.1        [required by mtime]
  - install ocamlfind                      1.9.8         [required by mtime]
  - install ocplib-endian                  1.2           [required by lwt]
  - install ocurl                          0.9.2         [required by opentelemetry-client-ocurl-lwt]
  - install opentelemetry                  0.90          [required by opentelemetry-client-ocurl-lwt]
  - install opentelemetry-client           0.90          [required by opentelemetry-client-ocurl-lwt]
  - install opentelemetry-client-ocurl-lwt 0.90 (pinned)
  - install pbrt                           4.1           [required by opentelemetry]
  - install pbrt_yojson                    4.1           [required by opentelemetry]
  - install ppx_derivers                   1.2.1         [required by ppxlib]
  - install ppxlib                         0.38.0        [required by lwt_ppx]
  - install ptime                          1.2.0         [required by opentelemetry]
  - install sexplib0                       v0.17.0       [required by ppxlib]
  - install stdlib-shims                   0.3.0         [required by pbrt]
  - install thread-local-storage           0.2           [required by opentelemetry, opentelemetry-client]
  - install topkg                          1.1.1         [required by mtime]
  - install yojson                         3.0.0         [required by pbrt_yojson]

The following system packages will first need to be installed:
    libcurl-devel

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

opam believes some required external dependencies are missing. opam can:
> 1. Run zypper to install them (may need root/sudo access)
  2. Display the recommended zypper 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 "zypper" "--non-interactive" "install" "libcurl-devel"
- Loading repository data...
- Reading installed packages...
- Resolving package dependencies...
- 
- The following 22 NEW packages are going to be installed:
-   cmake cmake-full jitterentropy-devel keyutils-devel krb5-devel libarchive13 libbrotli-devel libbrotlienc1 libcom_err-devel libcurl-devel libidn2-devel libjsoncpp19 libnghttp2-devel libopenssl-3-devel libopenssl1_1 libpsl-devel libpython3_6m1_0 librhash0 libssh-devel libverto-devel libzstd-devel python3-base
- 
- 22 new packages to install.
- 
- Package download size:    26.4 MiB
- 
- Package install size change:
-               |      93.7 MiB  required by packages that will be installed
-     93.7 MiB  |  -      0 B    released by packages that will be removed
- 
- Backend:  classic_rpmtrans
- Continue? [y/n/v/...? shows all options] (y): y
- Retrieving: keyutils-devel-1.6.3-5.6.1.x86_64 (Main Repository) (1/22),  13.8 KiB    
- Retrieving: keyutils-devel-1.6.3-5.6.1.x86_64.rpm [...
- ....
- ....
- ....
- ....
- ....done]
- Retrieving: libidn2-devel-2.2.0-3.6.1.x86_64 (Main Repository) (2/22),  37.2 KiB    
- Retrieving: libidn2-devel-2.2.0-3.6.1.x86_64.rpm [.done]
- Retrieving: libjsoncpp19-1.8.4-1.17.x86_64 (Main Repository) (3/22),  77.1 KiB    
- Retrieving: libjsoncpp19-1.8.4-1.17.x86_64.rpm [.done]
- Retrieving: libnghttp2-devel-1.40.0-150600.23.2.x86_64 (Main Repository) (4/22),  94.4 KiB    
- Retrieving: libnghttp2-devel-1.40.0-150600.23.2.x86_64.rpm [.done]
- Retrieving: libpsl-devel-0.20.1-150000.3.3.1.x86_64 (Main Repository) (5/22),  30.3 KiB    
- Retrieving: libpsl-devel-0.20.1-150000.3.3.1.x86_64.rpm [.done]
- Retrieving: librhash0-1.3.5-1.25.x86_64 (Main Repository) (6/22),  84.7 KiB    
- Retrieving: librhash0-1.3.5-1.25.x86_64.rpm [.done]
- Retrieving: libverto-devel-0.2.6-3.20.x86_64 (Main Repository) (7/22),  14.4 KiB    
- Retrieving: libverto-devel-0.2.6-3.20.x86_64.rpm [.done]
- Retrieving: libzstd-devel-1.5.5-150600.1.3.x86_64 (Main Repository) (8/22),  72.0 KiB    
- Retrieving: libzstd-devel-1.5.5-150600.1.3.x86_64.rpm [.done]
- Retrieving: jitterentropy-devel-3.4.1-150000.1.12.1.x86_64 (Update repository with updates from SUSE Linux Enterprise 15) (9/22),  29.5 KiB    
- Retrieving: jitterentropy-devel-3.4.1-150000.1.12.1.x86_64.rpm [.....
- ....
- ....
- ....
- ....done]
- Retrieving: libarchive13-3.7.2-150600.3.17.1.x86_64 (Update repository with updates from SUSE Linux Enterprise 15) (10/22), 341.4 KiB    
- Retrieving: libarchive13-3.7.2-150600.3.17.1.x86_64.rpm [.not found]
- Retrieving: libarchive13-3.7.2-150600.3.17.1.x86_64.rpm [.not found]
- Retrieving: libarchive13-3.7.2-150600.3.17.1.x86_64.rpm [.done]
- Retrieving: libbrotlienc1-1.0.7-150200.3.5.1.x86_64 (Update repository with updates from SUSE Linux Enterprise 15) (11/22), 203.4 KiB    
- Retrieving: libbrotlienc1-1.0.7-150200.3.5.1.x86_64.rpm [.not found]
- Retrieving: libbrotlienc1-1.0.7-150200.3.5.1.x86_64.rpm [.not found]
- Retrieving: libbrotlienc1-1.0.7-150200.3.5.1.x86_64.rpm [.
- .done (151.7 KiB/s)]
- Retrieving: libcom_err-devel-1.47.0-150600.4.6.2.x86_64 (Update repository with updates from SUSE Linux Enterprise 15) (12/22),  39.6 KiB    
- Retrieving: libcom_err-devel-1.47.0-150600.4.6.2.x86_64.rpm [.not found]
- Retrieving: libcom_err-devel-1.47.0-150600.4.6.2.x86_64.rpm [.not found]
- Retrieving: libcom_err-devel-1.47.0-150600.4.6.2.x86_64.rpm [.done]
- Retrieving: libopenssl1_1-1.1.1w-150600.5.21.1.x86_64 (Update repository with updates from SUSE Linux Enterprise 15) (13/22),   1.4 MiB    
- Retrieving: libopenssl1_1-1.1.1w-150600.5.21.1.x86_64.rpm [.not found]
- Retrieving: libopenssl1_1-1.1.1w-150600.5.21.1.x86_64.rpm [.not found]
- Retrieving: libopenssl1_1-1.1.1w-150600.5.21.1.x86_64.rpm [..done (1.1 MiB/s)]
- Retrieving: libopenssl-3-devel-3.1.4-150600.5.42.1.x86_64 (Update repository with updates from SUSE Linux Enterprise 15) (14/22), 378.7 KiB    
- Retrieving: libopenssl-3-devel-3.1.4-150600.5.42.1.x86_64.rpm [.not found]
- Retrieving: libopenssl-3-devel-3.1.4-150600.5.42.1.x86_64.rpm [.not found]
- Retrieving: libopenssl-3-devel-3.1.4-150600.5.42.1.x86_64.rpm [.done]
- Retrieving: libbrotli-devel-1.0.7-150200.3.5.1.x86_64 (Update repository with updates from SUSE Linux Enterprise 15) (15/22),  32.2 KiB    
- Retrieving: libbrotli-devel-1.0.7-150200.3.5.1.x86_64.rpm [.not found]
- Retrieving: libbrotli-devel-1.0.7-150200.3.5.1.x86_64.rpm [.not found]
- Retrieving: libbrotli-devel-1.0.7-150200.3.5.1.x86_64.rpm [.done]
- Retrieving: krb5-devel-1.20.1-150600.11.14.1.x86_64 (Update repository with updates from SUSE Linux Enterprise 15) (16/22), 166.9 KiB    
- Retrieving: krb5-devel-1.20.1-150600.11.14.1.x86_64.rpm [.not found]
- Retrieving: krb5-devel-1.20.1-150600.11.14.1.x86_64.rpm [.not found]
- Retrieving: krb5-devel-1.20.1-150600.11.14.1.x86_64.rpm [.done]
- Retrieving: python3-base-3.6.15-150300.10.109.1.x86_64 (Update repository with updates from SUSE Linux Enterprise 15) (17/22),   7.8 MiB    
- Retrieving: python3-base-3.6.15-150300.10.109.1.x86_64.rpm [.not found]
- Retrieving: python3-base-3.6.15-150300.10.109.1.x86_64.rpm [.not found]
- Retrieving: python3-base-3.6.15-150300.10.109.1.x86_64.rpm [.....
- .........done (3.7 MiB/s)]
- Retrieving: libpython3_6m1_0-3.6.15-150300.10.109.1.x86_64 (Update repository with updates from SUSE Linux Enterprise 15) (18/22),   1.2 MiB    
- Retrieving: libpython3_6m1_0-3.6.15-150300.10.109.1.x86_64.rpm [.not found]
- Retrieving: libpython3_6m1_0-3.6.15-150300.10.109.1.x86_64.rpm [.not found]
- Retrieving: libpython3_6m1_0-3.6.15-150300.10.109.1.x86_64.rpm [.
- .done (637.0 KiB/s)]
- Retrieving: cmake-full-3.28.3-150600.3.3.1.x86_64 (Update repository with updates from SUSE Linux Enterprise 15) (19/22),  13.9 MiB    
- Retrieving: cmake-full-3.28.3-150600.3.3.1.x86_64.rpm [.not found]
- Retrieving: cmake-full-3.28.3-150600.3.3.1.x86_64.rpm [.not found]
- Retrieving: cmake-full-3.28.3-150600.3.3.1.x86_64.rpm [........
- .......done (6.9 MiB/s)]
- Retrieving: cmake-3.28.3-150600.3.3.1.x86_64 (Update repository with updates from SUSE Linux Enterprise 15) (20/22), 104.6 KiB    
- Retrieving: cmake-3.28.3-150600.3.3.1.x86_64.rpm [.not found]
- Retrieving: cmake-3.28.3-150600.3.3.1.x86_64.rpm [.not found]
- Retrieving: cmake-3.28.3-150600.3.3.1.x86_64.rpm [.done]
- Retrieving: libssh-devel-0.9.8-150600.11.9.1.x86_64 (Update repository with updates from SUSE Linux Enterprise 15) (21/22),  50.9 KiB    
- Retrieving: libssh-devel-0.9.8-150600.11.9.1.x86_64.rpm [.not found]
- Retrieving: libssh-devel-0.9.8-150600.11.9.1.x86_64.rpm [.not found]
- Retrieving: libssh-devel-0.9.8-150600.11.9.1.x86_64.rpm [.done]
- Retrieving: libcurl-devel-8.14.1-150600.4.40.1.x86_64 (Update repository with updates from SUSE Linux Enterprise 15) (22/22), 312.5 KiB    
- Retrieving: libcurl-devel-8.14.1-150600.4.40.1.x86_64.rpm [.not found]
- Retrieving: libcurl-devel-8.14.1-150600.4.40.1.x86_64.rpm [.not found]
- Retrieving: libcurl-devel-8.14.1-150600.4.40.1.x86_64.rpm [.done]
- 
- Checking for file conflicts: [..
- done]
- ( 1/22) Installing: keyutils-devel-1.6.3-5.6.1.x86_64 [..done]
- ( 2/22) Installing: libidn2-devel-2.2.0-3.6.1.x86_64 [..done]
- ( 3/22) Installing: libjsoncpp19-1.8.4-1.17.x86_64 [..done]
- ( 4/22) Installing: libnghttp2-devel-1.40.0-150600.23.2.x86_64 [..done]
- ( 5/22) Installing: libpsl-devel-0.20.1-150000.3.3.1.x86_64 [..done]
- ( 6/22) Installing: librhash0-1.3.5-1.25.x86_64 [..done]
- ( 7/22) Installing: libverto-devel-0.2.6-3.20.x86_64 [..done]
- ( 8/22) Installing: libzstd-devel-1.5.5-150600.1.3.x86_64 [..done]
- ( 9/22) Installing: jitterentropy-devel-3.4.1-150000.1.12.1.x86_64 [..done]
- (10/22) Installing: libarchive13-3.7.2-150600.3.17.1.x86_64 [..done]
- (11/22) Installing: libbrotlienc1-1.0.7-150200.3.5.1.x86_64 [..done]
- (12/22) Installing: libcom_err-devel-1.47.0-150600.4.6.2.x86_64 [..done]
- (13/22) Installing: libopenssl1_1-1.1.1w-150600.5.21.1.x86_64 [...done]
- (14/22) Installing: libopenssl-3-devel-3.1.4-150600.5.42.1.x86_64 [..done]
- (15/22) Installing: libbrotli-devel-1.0.7-150200.3.5.1.x86_64 [..done]
- (16/22) Installing: krb5-devel-1.20.1-150600.11.14.1.x86_64 [.
- .done]
- (17/22) Installing: python3-base-3.6.15-150300.10.109.1.x86_64 [..........done]
- (18/22) Installing: libpython3_6m1_0-3.6.15-150300.10.109.1.x86_64 [..
- .done]
- (19/22) Installing: cmake-full-3.28.3-150600.3.3.1.x86_64 [..........
- .......done]
- (20/22) Installing: cmake-3.28.3-150600.3.3.1.x86_64 [..done]
- (21/22) Installing: libssh-devel-0.9.8-150600.11.9.1.x86_64 [..done]
- (22/22) Installing: libcurl-devel-8.14.1-150600.4.40.1.x86_64 [..done]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ambient-context.0.2, ambient-context-lwt.0.2  (cached)
-> retrieved base64.3.5.2  (cached)
-> retrieved cppo.1.8.0  (cached)
-> retrieved csexp.1.5.2  (cached)
-> installed conf-libcurl.2
-> retrieved dune.3.22.0, dune-configurator.3.22.0  (cached)
-> retrieved ezcurl.0.3, ezcurl-lwt.0.3  (cached)
-> retrieved hmap.0.8.1  (cached)
-> retrieved lwt.5.9.2  (cached)
-> retrieved lwt_ppx.5.9.3  (cached)
-> retrieved mtime.2.1.0  (cached)
-> retrieved ocaml-compiler-libs.v0.17.0  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ocplib-endian.1.2  (cached)
-> retrieved ocurl.0.9.2  (cached)
-> retrieved opentelemetry.0.90, opentelemetry-client.0.90, opentelemetry-client-ocurl-lwt.0.90  (cached)
-> retrieved pbrt.4.1, pbrt_yojson.4.1  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppxlib.0.38.0  (cached)
-> retrieved ptime.1.2.0  (cached)
-> retrieved sexplib0.v0.17.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 base-bytes.base
-> 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.0
-> installed base64.3.5.2
-> 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 thread-local-storage.0.2
-> installed yojson.3.0.0
-> installed ocplib-endian.1.2
-> installed pbrt_yojson.4.1
-> installed pbrt.4.1
-> installed ambient-context.0.2
-> installed dune-configurator.3.22.0
-> installed lwt.5.9.2
-> installed ambient-context-lwt.0.2
-> installed opentelemetry.0.90
-> installed opentelemetry-client.0.90
-> installed ppxlib.0.38.0
-> installed lwt_ppx.5.9.3
-> installed ocurl.0.9.2
-> installed ezcurl.0.3
-> installed ezcurl-lwt.0.3
-> installed opentelemetry-client-ocurl-lwt.0.90
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-02 19:54.27 ---> saved as "4aebb99dccc57e3f7fef3f6b531985cca4e032489e92ab30189b536ec7b949e5"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test opentelemetry-client-ocurl-lwt.0.90) || true"))
The following actions will be performed:
=== recompile 6 packages
  - recompile ambient-context-lwt            0.2                              [uses lwt]
  - recompile ezcurl                         0.3                              [uses ocurl]
  - recompile ezcurl-lwt                     0.3                              [uses lwt]
  - recompile opentelemetry                  0.90                             [uses lwt]
  - recompile opentelemetry-client           0.90                             [uses opentelemetry]
  - recompile opentelemetry-client-ocurl-lwt 0.90 (pinned)
=== upgrade 3 packages
  - upgrade   lwt                            5.9.2 to 6.1.1                   [required by opentelemetry-client-ocurl-lwt]
  - upgrade   lwt_ppx                        5.9.3 to 6.1.0                   [required by opentelemetry-client-ocurl-lwt]
  - upgrade   ocurl                          0.9.2 to transition (deprecated) [required by opentelemetry-client-ocurl-lwt]
=== install 53 packages
  - install   alcotest                       1.9.1                            [required by opentelemetry-client-ocurl-lwt]
  - install   angstrom                       0.16.1                           [required by uri]
  - install   asn1-combinators               0.3.2                            [required by x509]
  - install   astring                        0.8.5                            [required by alcotest]
  - install   base                           v0.17.3                          [required by ppx_sexp_conv]
  - install   bigstringaf                    0.10.0                           [required by angstrom]
  - install   bos                            0.2.1                            [required by ca-certs]
  - install   ca-certs                       1.0.1                            [required by conduit-lwt-unix]
  - install   cmdliner                       2.1.0                            [required by alcotest, cohttp-lwt-unix]
  - install   cohttp                         6.2.1                            [required by cohttp-lwt-unix]
  - install   cohttp-lwt                     6.2.1                            [required by cohttp-lwt-unix]
  - install   cohttp-lwt-unix                6.2.1                            [required by opentelemetry-client-ocurl-lwt]
  - install   conduit                        8.0.0                            [required by conduit-lwt]
  - install   conduit-lwt                    8.0.0                            [required by cohttp-lwt-unix]
  - install   conduit-lwt-unix               8.0.0                            [required by cohttp-lwt-unix]
  - install   conf-gmp                       5                                [required by conf-gmp-powm-sec, zarith]
  - install   conf-gmp-powm-sec              4                                [required by mirage-crypto-pk]
  - install   conf-pkg-config                4                                [required by zarith]
  - install   containers                     3.18                             [required by opentelemetry-client-ocurl-lwt]
  - install   curl                           0.10.0                           [required by ocurl]
  - install   curl_lwt                       0.10.0                           [required by ocurl]
  - install   digestif                       1.3.0                            [required by ca-certs]
  - install   domain-name                    0.5.0                            [required by ipaddr]
  - install   duration                       0.2.1                            [required by mirage-crypto-rng]
  - install   either                         1.0.0                            [required by containers]
  - install   eqaf                           0.10                             [required by digestif, mirage-crypto]
  - install   fmt                            0.11.0                           [required by alcotest, cohttp-lwt-unix]
  - install   fpath                          0.7.3                            [required by ca-certs]
  - install   gmap                           0.3.0                            [required by x509]
  - install   http                           6.2.1                            [required by cohttp-lwt-unix]
  - install   ipaddr                         5.6.2                            [required by cohttp-lwt, cohttp, conduit-lwt-unix]
  - install   ipaddr-sexp                    5.6.2                            [required by conduit-lwt-unix]
  - install   kdf                            1.0.0                            [required by x509]
  - install   logs                           0.10.0                           [required by opentelemetry-client-ocurl-lwt]
  - install   macaddr                        5.6.2                            [required by ipaddr]
  - install   magic-mime                     1.3.1                            [required by cohttp-lwt-unix]
  - install   mirage-crypto                  2.1.0                            [required by ca-certs]
  - install   mirage-crypto-ec               2.1.0                            [required by x509]
  - install   mirage-crypto-pk               2.1.0                            [required by x509]
  - install   mirage-crypto-rng              2.1.0                            [required by x509]
  - install   ocaml-syntax-shims             1.0.0                            [required by alcotest]
  - install   ocaml_intrinsics_kernel        v0.17.1                          [required by base]
  - install   ohex                           0.2.0                            [required by ca-certs]
  - install   ppx_sexp_conv                  v0.17.1                          [required by cohttp-lwt-unix]
  - install   ppxlib_jane                    v0.17.4                          [required by ppx_sexp_conv]
  - install   re                             1.14.0                           [required by alcotest]
  - install   rresult                        0.7.0                            [required by bos]
  - 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   uutf                           1.0.4                            [required by alcotest]
  - install   x509                           1.0.6                            [required by ca-certs]
  - install   zarith                         1.14                             [required by mirage-crypto-pk]

The following system packages will first need to be installed:
    gmp-devel

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

opam believes some required external dependencies are missing. opam can:
> 1. Run zypper to install them (may need root/sudo access)
  2. Display the recommended zypper 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 "zypper" "--non-interactive" "install" "gmp-devel"
- Loading repository data...
- Reading installed packages...
- Resolving package dependencies...
- 
- The following 2 NEW packages are going to be installed:
-   gmp-devel libgmpxx4
- 
- 2 new packages to install.
- 
- Package download size:     2.2 MiB
- 
- Package install size change:
-               |       6.7 MiB  required by packages that will be installed
-      6.7 MiB  |  -      0 B    released by packages that will be removed
- 
- Backend:  classic_rpmtrans
- Continue? [y/n/v/...? shows all options] (y): y
- Retrieving: libgmpxx4-6.1.2-4.9.1.x86_64 (Main Repository) (1/2),  17.1 KiB    
- Retrieving: libgmpxx4-6.1.2-4.9.1.x86_64.rpm [....
- ....
- ....
- ....
- ....
- ....done]
- Retrieving: gmp-devel-6.1.2-4.9.1.x86_64 (Main Repository) (2/2),   2.2 MiB    
- Retrieving: gmp-devel-6.1.2-4.9.1.x86_64.rpm [.done]
- 
- Checking for file conflicts: [..
- done]
- (1/2) Installing: libgmpxx4-6.1.2-4.9.1.x86_64 [..done]
- (2/2) Installing: gmp-devel-6.1.2-4.9.1.x86_64 [...done]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1  (https://opam.ocaml.org/cache)
-> retrieved ambient-context-lwt.0.2  (https://opam.ocaml.org/cache)
-> retrieved angstrom.0.16.1  (https://opam.ocaml.org/cache)
-> retrieved asn1-combinators.0.3.2  (https://opam.ocaml.org/cache)
-> retrieved astring.0.8.5  (https://opam.ocaml.org/cache)
-> retrieved base.v0.17.3  (https://opam.ocaml.org/cache)
-> retrieved bigstringaf.0.10.0  (https://opam.ocaml.org/cache)
-> retrieved bos.0.2.1  (https://opam.ocaml.org/cache)
-> retrieved ca-certs.1.0.1  (https://opam.ocaml.org/cache)
-> installed asn1-combinators.0.3.2
-> retrieved cmdliner.2.1.0  (https://opam.ocaml.org/cache)
-> retrieved cohttp.6.2.1, cohttp-lwt.6.2.1, cohttp-lwt-unix.6.2.1, http.6.2.1  (https://opam.ocaml.org/cache)
-> installed bigstringaf.0.10.0
-> retrieved conduit.8.0.0, conduit-lwt.8.0.0, conduit-lwt-unix.8.0.0  (https://opam.ocaml.org/cache)
-> retrieved conf-gmp.5  (https://opam.ocaml.org/cache)
-> retrieved conf-gmp-powm-sec.4  (https://opam.ocaml.org/cache)
-> installed conf-pkg-config.4
-> installed conf-gmp.5
-> installed conf-gmp-powm-sec.4
-> installed http.6.2.1
-> retrieved containers.3.18  (https://opam.ocaml.org/cache)
-> retrieved curl.0.10.0, curl_lwt.0.10.0, ocurl.transition  (https://opam.ocaml.org/cache)
-> installed astring.0.8.5
-> retrieved digestif.1.3.0  (https://opam.ocaml.org/cache)
-> retrieved domain-name.0.5.0  (https://opam.ocaml.org/cache)
-> retrieved duration.0.2.1  (https://opam.ocaml.org/cache)
-> retrieved either.1.0.0  (https://opam.ocaml.org/cache)
-> retrieved eqaf.0.10  (https://opam.ocaml.org/cache)
-> installed domain-name.0.5.0
-> retrieved ezcurl.0.3, ezcurl-lwt.0.3  (https://opam.ocaml.org/cache)
-> installed duration.0.2.1
-> retrieved fmt.0.11.0  (https://opam.ocaml.org/cache)
-> installed either.1.0.0
-> retrieved fpath.0.7.3  (https://opam.ocaml.org/cache)
-> retrieved gmap.0.3.0  (https://opam.ocaml.org/cache)
-> retrieved ipaddr.5.6.2, ipaddr-sexp.5.6.2, macaddr.5.6.2  (https://opam.ocaml.org/cache)
-> installed eqaf.0.10
-> installed gmap.0.3.0
-> retrieved kdf.1.0.0  (https://opam.ocaml.org/cache)
-> retrieved logs.0.10.0  (https://opam.ocaml.org/cache)
-> retrieved lwt.6.1.1  (https://opam.ocaml.org/cache)
-> installed macaddr.5.6.2
-> retrieved lwt_ppx.6.1.0  (https://opam.ocaml.org/cache)
-> installed fpath.0.7.3
-> retrieved magic-mime.1.3.1  (https://opam.ocaml.org/cache)
-> installed ipaddr.5.6.2
-> installed digestif.1.3.0
-> retrieved mirage-crypto.2.1.0, mirage-crypto-ec.2.1.0, mirage-crypto-pk.2.1.0, mirage-crypto-rng.2.1.0  (https://opam.ocaml.org/cache)
-> retrieved ocaml-syntax-shims.1.0.0  (https://opam.ocaml.org/cache)
-> retrieved ocaml_intrinsics_kernel.v0.17.1  (https://opam.ocaml.org/cache)
-> retrieved ohex.0.2.0  (https://opam.ocaml.org/cache)
-> installed cmdliner.2.1.0
-> installed containers.3.18
-> installed magic-mime.1.3.1
-> installed mirage-crypto.2.1.0
-> installed ocaml_intrinsics_kernel.v0.17.1
-> installed ohex.0.2.0
-> retrieved opentelemetry.0.90, opentelemetry-client.0.90, opentelemetry-client-ocurl-lwt.0.90  (https://github.com/ocaml-tracing/ocaml-opentelemetry/releases/download/v0.90/opentelemetry-0.90.tbz)
-> installed kdf.1.0.0
-> retrieved ppx_sexp_conv.v0.17.1  (https://opam.ocaml.org/cache)
-> retrieved ppxlib_jane.v0.17.4  (https://opam.ocaml.org/cache)
-> installed ocaml-syntax-shims.1.0.0
-> retrieved re.1.14.0  (https://opam.ocaml.org/cache)
-> retrieved rresult.0.7.0  (https://opam.ocaml.org/cache)
-> retrieved stringext.1.6.0  (https://opam.ocaml.org/cache)
-> retrieved uri.4.4.0, uri-sexp.4.4.0  (https://opam.ocaml.org/cache)
-> retrieved uutf.1.0.4  (https://opam.ocaml.org/cache)
-> installed fmt.0.11.0
-> installed stringext.1.6.0
-> installed angstrom.0.16.1
-> retrieved x509.1.0.6  (https://opam.ocaml.org/cache)
-> retrieved zarith.1.14  (https://opam.ocaml.org/cache)
-> installed rresult.0.7.0
-> installed ppxlib_jane.v0.17.4
-> removed   opentelemetry-client-ocurl-lwt.0.90
-> removed   ambient-context-lwt.0.2
-> removed   ezcurl-lwt.0.3
-> removed   ezcurl.0.3
-> removed   ocurl.0.9.2
-> removed   lwt_ppx.5.9.3
-> removed   opentelemetry-client.0.90
-> removed   opentelemetry.0.90
-> removed   lwt.5.9.2
-> installed re.1.14.0
-> installed uutf.1.0.4
-> installed uri.4.4.0
-> installed alcotest.1.9.1
-> installed curl.0.10.0
-> installed zarith.1.14
-> installed lwt.6.1.1
-> installed ambient-context-lwt.0.2
-> installed curl_lwt.0.10.0
-> installed ocurl.transition
-> installed ezcurl.0.3
-> installed base.v0.17.3
-> installed ezcurl-lwt.0.3
-> installed logs.0.10.0
-> installed opentelemetry.0.90
-> installed mirage-crypto-rng.2.1.0
-> installed lwt_ppx.6.1.0
-> installed mirage-crypto-pk.2.1.0
-> installed opentelemetry-client.0.90
-> installed ppx_sexp_conv.v0.17.1
-> installed bos.0.2.1
-> installed mirage-crypto-ec.2.1.0
-> installed ipaddr-sexp.5.6.2
-> installed uri-sexp.4.4.0
-> installed x509.1.0.6
-> installed ca-certs.1.0.1
-> installed conduit.8.0.0
-> installed cohttp.6.2.1
-> installed conduit-lwt.8.0.0
-> installed cohttp-lwt.6.2.1
-> installed conduit-lwt-unix.8.0.0
-> installed cohttp-lwt-unix.6.2.1
-> installed opentelemetry-client-ocurl-lwt.0.90
Done.

<><> ocurl.transition installed successfully ><><><><><><><><><><><><><><><><><>
=> Note: This package is deprecated.
=> ocurl has been renamed and the ocurl package is now a transition package. Use the curl package instead.
# To update the current shell environment, run: eval $(opam env)
2026-04-02 19:55.52 ---> saved as "7ae7937c6790d8aa48cdb221f9c16408f84ae66bc2de8b0e4f4df71764fc7973"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  2/4: [opentelemetry-client-ocurl-lwt: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "opentelemetry-client-ocurl-lwt" "-j" "255" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/opentelemetry-client-ocurl-lwt.0.90)
- (cd _build/default/tests/ocurl-lwt && ./test_urls.exe)
- config1: { debug=false; log_level=info; sdk_disabled=false; self_trace=false;
-           self_metrics=false; url_traces="http://localhost:4318/v1/traces";
-           url_metrics="http://localhost:4318/v1/metrics";
-           url_logs="http://localhost:4318/v1/logs"; headers=[];
-           headers_traces=[]; headers_metrics=[]; headers_logs=[];
-           protocol=http/protobuf; timeout_ms=10000; timeout_traces_ms=10000;
-           timeout_metrics_ms=10000; timeout_logs_ms=10000; traces={batch=400;
-           timeout=2s}; metrics={batch=200; timeout=2s}; logs={batch=400;
-           timeout=2s}; http_concurrency_level=None; retry_max_attempts=3;
-           retry_initial_delay_ms=100; retry_max_delay_ms=5000;
-           retry_backoff_multiplier=2.0 }
- config2: { debug=false; log_level=info; sdk_disabled=false; self_trace=false;
-           self_metrics=false; url_traces="http://example.com:1234/v1/traces";
-           url_metrics="http://example.com:1234/v1/metrics";
-           url_logs="http://example.com:1234/v1/logs"; headers=[];
-           headers_traces=[]; headers_metrics=[]; headers_logs=[];
-           protocol=http/protobuf; timeout_ms=10000; timeout_traces_ms=10000;
-           timeout_metrics_ms=10000; timeout_logs_ms=10000; traces={batch=400;
-           timeout=2s}; metrics={batch=200; timeout=2s}; logs={batch=400;
-           timeout=2s}; http_concurrency_level=None; retry_max_attempts=3;
-           retry_initial_delay_ms=100; retry_max_delay_ms=5000;
-           retry_backoff_multiplier=2.0 }
- config3: { debug=false; log_level=info; sdk_disabled=false; self_trace=false;
-           self_metrics=false; url_traces="http://example.com/traces";
-           url_metrics="http://example.com/metrics";
-           url_logs="http://example.com/logs"; headers=[]; headers_traces=[];
-           headers_metrics=[]; headers_logs=[]; protocol=http/protobuf;
-           timeout_ms=10000; timeout_traces_ms=10000;
-           timeout_metrics_ms=10000; timeout_logs_ms=10000; traces={batch=400;
-           timeout=2s}; metrics={batch=200; timeout=2s}; logs={batch=400;
-           timeout=2s}; http_concurrency_level=None; retry_max_attempts=3;
-           retry_initial_delay_ms=100; retry_max_delay_ms=5000;
-           retry_backoff_multiplier=2.0 }
- All URL tests passed
- (cd _build/default/tests/client_e2e && ./test_ocurl_lwt_client_e2e.exe)
- Testing `Collector integration tests'.
- This run has ID `3JLEDOGP'.
- 
-   [OK]          'test: emit1_ocurl_lwt -j 1 --procs 1 --url http://localhost:4359 -n 1 --iterations 1 --batch-traces 2 --batch-metrics 2 --batch-logs 2'              0   loop.outer spans....
-   [OK]          'test: emit1_ocurl_lwt -j 1 --procs 1 --url http://localhost:4359 -n 1 --iterations 1 --batch-traces 2 --batch-metrics 2 --batch-logs 2'              1   loop.inner spans....
-   [OK]          'test: emit1_ocurl_lwt -j 1 --procs 1 --url http://localhost:4359 -n 1 --iterations 1 --batch-traces 2 --batch-metrics 2 --batch-logs 2'              2   alloc spans....
-   [OK]          'test: emit1_ocurl_lwt -j 1 --procs 1 --url http://localhost:4359 -n 1 --iterations 1 --batch-traces 2 --batch-metrics 2 --batch-logs 2'              3   num-sleep metrics....
-   [OK]          'test: emit1_ocurl_lwt -j 1 --procs 1 --url http://localhost:4359 -n 1 --iterations 1 --batch-traces 2 --batch-metrics 2 --batch-logs 2'              4   logs....
-   [OK]          'test: emit1_ocurl_lwt -j 3 --procs 1 --url http://localhost:4359 -n 1 --iterations 1 --batch-traces 400 --batch-metrics 3 --batch-logs 400'          0   loop.outer spans....
-   [OK]          'test: emit1_ocurl_lwt -j 3 --procs 1 --url http://localhost:4359 -n 1 --iterations 1 --batch-traces 400 --batch-metrics 3 --batch-logs 400'          1   loop.inner spans....
-   [OK]          'test: emit1_ocurl_lwt -j 3 --procs 1 --url http://localhost:4359 -n 1 --iterations 1 --batch-traces 400 --batch-metrics 3 --batch-logs 400'          2   alloc spans....
-   [OK]          'test: emit1_ocurl_lwt -j 3 --procs 1 --url http://localhost:4359 -n 1 --iterations 1 --batch-traces 400 --batch-metrics 3 --batch-logs 400'          3   num-sleep metrics....
-   [OK]          'test: emit1_ocurl_lwt -j 3 --procs 1 --url http://localhost:4359 -n 1 --iterations 1 --batch-traces 400 --batch-metrics 3 --batch-logs 400'          4   logs....
-   [OK]          'test: emit1_ocurl_lwt -j 3 --procs 1 --url http://localhost:4359 -n 5 --iterations 1 --batch-traces 400 --batch-metrics 3 --batch-logs 400'          0   loop.outer spans....
-   [OK]          'test: emit1_ocurl_lwt -j 3 --procs 1 --url http://localhost:4359 -n 5 --iterations 1 --batch-traces 400 --batch-metrics 3 --batch-logs 400'          1   loop.inner spans....
-   [OK]          'test: emit1_ocurl_lwt -j 3 --procs 1 --url http://localhost:4359 -n 5 --iterations 1 --batch-traces 400 --batch-metrics 3 --batch-logs 400'          2   alloc spans....
-   [OK]          'test: emit1_ocurl_lwt -j 3 --procs 1 --url http://localhost:4359 -n 5 --iterations 1 --batch-traces 400 --batch-metrics 3 --batch-logs 400'          3   num-sleep metrics....
-   [OK]          'test: emit1_ocurl_lwt -j 3 --procs 1 --url http://localhost:4359 -n 5 --iterations 1 --batch-traces 400 --batch-metrics 3 --batch-logs 400'          4   logs....
- 
- Full test results in `~/.opam/5.4/.opam-switch/build/opentelemetry-client-ocurl-lwt.0.90/_build/default/tests/client_e2e/_build/_tests/Collector integration tests'.
- Test Successful in 0.002s. 15 tests run.
- starting server on http://localhost:4359
- running command: emit1_ocurl_lwt -j 1 --procs 1 --url http://localhost:4359 -n 1 --iterations 1 --batch-traces 2 --batch-metrics 2 --batch-logs 2
- sleep outer: 2.000s, sleep inner: 0.100s,
-   config: { debug=false; log_level=info; sdk_disabled=false; self_trace=true;
-            self_metrics=false; url_traces="http://localhost:4359/v1/traces";
-            url_metrics="http://localhost:4359/v1/metrics";
-            url_logs="http://localhost:4359/v1/logs"; headers=[];
-            headers_traces=[]; headers_metrics=[]; headers_logs=[];
-            protocol=http/protobuf; timeout_ms=10000; timeout_traces_ms=10000;
-            timeout_metrics_ms=10000; timeout_logs_ms=10000; traces={batch=2;
-            timeout=2s}; metrics={batch=2; timeout=2s}; logs={batch=2;
-            timeout=2s}; http_concurrency_level=None; retry_max_attempts=3;
-            retry_initial_delay_ms=100; retry_max_delay_ms=5000;
-            retry_backoff_multiplier=2.0 }
- [otel:info] opentelemetry: ocurl-lwt exporter installed
- run 1 job(s)
- [otel:info] opentelemetry: SDK removed
- [otel:info] otel: trace provider removed
- [otel:info] otel: meter provider removed
- [otel:info] otel: log provider removed
- 
- done. 3 spans in 2.1094s (1.4222/s)
- starting server on http://localhost:4359
- running command: emit1_ocurl_lwt -j 3 --procs 1 --url http://localhost:4359 -n 1 --iterations 1 --batch-traces 400 --batch-metrics 3 --batch-logs 400
- sleep outer: 2.000s, sleep inner: 0.100s,
-   config: { debug=false; log_level=info; sdk_disabled=false; self_trace=true;
-            self_metrics=false; url_traces="http://localhost:4359/v1/traces";
-            url_metrics="http://localhost:4359/v1/metrics";
-            url_logs="http://localhost:4359/v1/logs"; headers=[];
-            headers_traces=[]; headers_metrics=[]; headers_logs=[];
-            protocol=http/protobuf; timeout_ms=10000; timeout_traces_ms=10000;
-            timeout_metrics_ms=10000; timeout_logs_ms=10000;
-            traces={batch=400; timeout=2s}; metrics={batch=3; timeout=2s};
-            logs={batch=400; timeout=2s}; http_concurrency_level=None;
-            retry_max_attempts=3; retry_initial_delay_ms=100;
-            retry_max_delay_ms=5000; retry_backoff_multiplier=2.0 }
- [otel:info] opentelemetry: ocurl-lwt exporter installed
- run 3 job(s)
- [otel:info] opentelemetry: SDK removed
- [otel:info] otel: trace provider removed
- [otel:info] otel: meter provider removed
- [otel:info] otel: log provider removed
- 
- done. 9 spans in 6.1236s (1.4697/s)
- starting server on http://localhost:4359
- running command: emit1_ocurl_lwt -j 3 --procs 1 --url http://localhost:4359 -n 5 --iterations 1 --batch-traces 400 --batch-metrics 3 --batch-logs 400
- sleep outer: 2.000s, sleep inner: 0.100s,
-   config: { debug=false; log_level=info; sdk_disabled=false; self_trace=true;
-            self_metrics=false; url_traces="http://localhost:4359/v1/traces";
-            url_metrics="http://localhost:4359/v1/metrics";
-            url_logs="http://localhost:4359/v1/logs"; headers=[];
-            headers_traces=[]; headers_metrics=[]; headers_logs=[];
-            protocol=http/protobuf; timeout_ms=10000; timeout_traces_ms=10000;
-            timeout_metrics_ms=10000; timeout_logs_ms=10000;
-            traces={batch=400; timeout=2s}; metrics={batch=3; timeout=2s};
-            logs={batch=400; timeout=2s}; http_concurrency_level=None;
-            retry_max_attempts=3; retry_initial_delay_ms=100;
-            retry_max_delay_ms=5000; retry_backoff_multiplier=2.0 }
- [otel:info] opentelemetry: ocurl-lwt exporter installed
- run 3 job(s)
- [otel:info] opentelemetry: SDK removed
- [otel:info] otel: trace provider removed
- [otel:info] otel: meter provider removed
- [otel:info] otel: log provider removed
- 
- done. 45 spans in 30.1693s (1.4916/s)
-> compiled  opentelemetry-client-ocurl-lwt.0.90
-> removed   opentelemetry-client-ocurl-lwt.0.90
-> installed opentelemetry-client-ocurl-lwt.0.90
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-02 19:56.42 ---> saved as "900f8e933f3a718c938fd2abb8e9a6a7c2a5087114800dae06e1f59b46c34c28"
Job succeeded
2026-04-02 19:56.51: Job succeeded