Build:
  1. 1
  2. 0
2026-03-05 22:53.14: New job: test opentelemetry-client-cohttp-lwt.0.13, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29501/head (fee83bbe33e4b4e7608ba61bb82ca9ea3c0ad932)
                              on opensuse-16.0-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/29501/head" && git reset --hard fee83bbe
git fetch origin master
git merge --no-edit 60ec6b8550edfae5d646174db3d4a71d61428705
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:opensuse-16.0-ocaml-4.14@sha256:bedc95a2f21ca9b8ffc271bb4e3eb3e142309c89d2799c37d294c9ff574780d6
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-cohttp-lwt.0.13 0.13
RUN opam reinstall opentelemetry-client-cohttp-lwt.0.13; \
    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-16.0\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'opentelemetry-client-cohttp-lwt.0.13' && 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-cohttp-lwt.0.13) || true
RUN opam reinstall --with-test --verbose opentelemetry-client-cohttp-lwt.0.13; \
    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-16.0\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'opentelemetry-client-cohttp-lwt.0.13' && 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-03-05 22:53.14: Using cache hint "ocaml/opam:opensuse-16.0-ocaml-4.14@sha256:bedc95a2f21ca9b8ffc271bb4e3eb3e142309c89d2799c37d294c9ff574780d6-opentelemetry-client-cohttp-lwt.0.13-fee83bbe33e4b4e7608ba61bb82ca9ea3c0ad932"
2026-03-05 22:53.14: Using OBuilder spec:
((from ocaml/opam:opensuse-16.0-ocaml-4.14@sha256:bedc95a2f21ca9b8ffc271bb4e3eb3e142309c89d2799c37d294c9ff574780d6)
 (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-cohttp-lwt.0.13 0.13"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall opentelemetry-client-cohttp-lwt.0.13;\
             \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-16.0\\\"\"; 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-cohttp-lwt.0.13' && 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-cohttp-lwt.0.13) || true"))
 (run (shell  "opam reinstall --with-test --verbose opentelemetry-client-cohttp-lwt.0.13;\
             \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-16.0\\\"\"; 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-cohttp-lwt.0.13' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-03-05 22:53.14: Waiting for resource in pool OCluster
2026-03-05 22:53.14: Waiting for worker…
2026-03-05 22:53.15: Got resource from pool OCluster
Building on toxis.caelum.ci.dev
All commits already cached
Updating files:  74% (13689/18385)
Updating files:  75% (13789/18385)
Updating files:  76% (13973/18385)
Updating files:  77% (14157/18385)
Updating files:  78% (14341/18385)
Updating files:  79% (14525/18385)
Updating files:  80% (14708/18385)
Updating files:  81% (14892/18385)
Updating files:  82% (15076/18385)
Updating files:  83% (15260/18385)
Updating files:  84% (15444/18385)
Updating files:  85% (15628/18385)
Updating files:  86% (15812/18385)
Updating files:  87% (15995/18385)
Updating files:  88% (16179/18385)
Updating files:  89% (16363/18385)
Updating files:  90% (16547/18385)
Updating files:  91% (16731/18385)
Updating files:  92% (16915/18385)
Updating files:  93% (17099/18385)
Updating files:  94% (17282/18385)
Updating files:  95% (17466/18385)
Updating files:  96% (17650/18385)
Updating files:  97% (17834/18385)
Updating files:  98% (18018/18385)
Updating files:  99% (18202/18385)
Updating files: 100% (18385/18385)
Updating files: 100% (18385/18385), done.
HEAD is now at 60ec6b8550 Merge pull request #29448 from jeromemaloberti/obuild.0.2.2
Merge made by the 'ort' strategy.
 .../opentelemetry-client-cohttp-eio.0.13/opam      | 53 ++++++++++++++++++++
 .../opentelemetry-client-cohttp-lwt.0.13/opam      | 51 +++++++++++++++++++
 .../opentelemetry-client-ocurl.0.13/opam           | 47 ++++++++++++++++++
 .../opentelemetry-cohttp-lwt.0.13/opam             | 47 ++++++++++++++++++
 .../opentelemetry-logs.0.13/opam                   | 49 +++++++++++++++++++
 .../opentelemetry-lwt/opentelemetry-lwt.0.13/opam  | 48 ++++++++++++++++++
 packages/opentelemetry/opentelemetry.0.13/opam     | 57 ++++++++++++++++++++++
 7 files changed, 352 insertions(+)
 create mode 100644 packages/opentelemetry-client-cohttp-eio/opentelemetry-client-cohttp-eio.0.13/opam
 create mode 100644 packages/opentelemetry-client-cohttp-lwt/opentelemetry-client-cohttp-lwt.0.13/opam
 create mode 100644 packages/opentelemetry-client-ocurl/opentelemetry-client-ocurl.0.13/opam
 create mode 100644 packages/opentelemetry-cohttp-lwt/opentelemetry-cohttp-lwt.0.13/opam
 create mode 100644 packages/opentelemetry-logs/opentelemetry-logs.0.13/opam
 create mode 100644 packages/opentelemetry-lwt/opentelemetry-lwt.0.13/opam
 create mode 100644 packages/opentelemetry/opentelemetry.0.13/opam

(from ocaml/opam:opensuse-16.0-ocaml-4.14@sha256:bedc95a2f21ca9b8ffc271bb4e3eb3e142309c89d2799c37d294c9ff574780d6)
2026-03-05 22:55.06 ---> saved as "a144658eed18f75f7327d292b5df9a9d2b85f7041e0e2348c1fe2f1f837e2c45"

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-03-05 22:55.06 ---> saved as "417c86ebbb478b11d73a580406de7efbc8dc0599fa29fd643a7476d3fa5599de"

/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.

[NOTE] The 'jobs' option was reset, its value was 255 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=255 --global
Continue? [Y/n] y
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-03-05 22:55.50 ---> saved as "7ff54737c7a70290fb43cd5cb15ec289f4f8a4f60d16c99519cff4d0c6cb5ddf"

/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=16.0
# 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       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
2026-03-05 22:55.52 ---> saved as "23fb6e04af1885e429a458099c06465c4da7062e92beca6d8d469c687ae631f2"

/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-03-05 22:56.09 ---> saved as "7e7d808b2ccf2f7efbe64f93dced505c7156e3bd8f771d6a6957e1fd4642fe5d"

/home/opam: (copy (src .) (dst opam-repository/))
2026-03-05 22:56.47 ---> saved as "5bba6ac4123ef76679654712d533f14a55a47b6ff50c5db7475fd5d5248a194c"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-05 22:57.17 ---> saved as "ea1daf8eebccd0c9ecd3f3fb0b629387e10fd2b1118062206b9e3d3e317100d2"

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "zypper" "--non-interactive" "refresh"
- Repository 'repo-openh264 (16.0)' is up to date.
- Retrieving repository 'repo-oss (16.0)' metadata [..
- Looking for gpg keys in repository repo-oss (16.0).
-   gpgkey=http://cdn.opensuse.org/distribution/leap/16.0/repo/oss/x86_64/repodata/repomd.xml.key
- ..
- .
- 
- Note: Received 1 new package signing key from repository "repo-oss (16.0)":
- 
-   Those additional keys are usually used to sign packages shipped by the repository. In order to
-   validate those packages upon download and installation the new keys will be imported into the rpm
-   database.
- 
-   New:
-   Key Fingerprint:  F044 C2C5 07A1 262B 538A AADD 8A49 EB03 25DB 7AE0
-   Key Name:         openSUSE:Backports OBS Project <openSUSE:Backports@build.opensuse.org>
-   Key Algorithm:    RSA 4096
-   Key Created:      Wed May 10 14:46:12 2023
-   Key Expires:      Sun May  9 14:46:12 2027
-   Rpm Name:         gpg-pubkey-25db7ae0-645bae34
- 
-   The repository metadata introducing the new keys have been signed and validated by the trusted
-   key:
- 
-   Repository:       repo-oss (16.0)
-   Key Fingerprint:  AD48 5664 E901 B867 051A B15F 35A2 F86E 29B7 00A4
-   Key Name:         openSUSE Project Signing Key <opensuse@opensuse.org>
-   Key Algorithm:    RSA 4096
-   Key Created:      Mon Jun 20 14:03:14 2022
-   Key Expires:      Fri Jun 19 14:03:14 2026
-   Rpm Name:         gpg-pubkey-29b700a4-62b07e22
- 
- .
- .
- .
- .......
- ..........
- ..........
- ..done]
- Building repository 'repo-oss (16.0)' cache [..
- ..done]
- All repositories have been refreshed.
2026-03-05 22:57.46 ---> saved as "20e973a51fa842ac21abfc79fe5a1a1c6d8a00f1b21932002886b222aaca51e7"

/home/opam: (run (shell "opam pin add -k version -yn opentelemetry-client-cohttp-lwt.0.13 0.13"))
opentelemetry-client-cohttp-lwt is now pinned to version 0.13
2026-03-05 22:57.47 ---> saved as "8f28f96eb18a044bd2998429a29072229fc327ade684e07695a570e78be46cc8"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall opentelemetry-client-cohttp-lwt.0.13;\
                        \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-16.0\\\"\"; 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-cohttp-lwt.0.13' && 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-cohttp-lwt.0.13 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 72 packages
  - install ambient-context                 0.2           [required by opentelemetry]
  - 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 atomic                          base          [required by opentelemetry]
  - install base                            v0.16.4       [required by ppx_sexp_conv]
  - install base-bytes                      base          [required by ocplib-endian]
  - install base64                          3.5.2         [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.1         [required by conduit-lwt-unix]
  - install cmdliner                        2.1.0         [required by cohttp-lwt-unix]
  - install cohttp                          6.2.1         [required by cohttp-lwt, cohttp-lwt-unix]
  - install cohttp-lwt                      6.2.1         [required by opentelemetry-client-cohttp-lwt]
  - install cohttp-lwt-unix                 6.2.1         [required by opentelemetry-client-cohttp-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 cppo                            1.8.0         [required by lwt]
  - install csexp                           1.5.2         [required by dune-configurator]
  - install digestif                        1.3.0         [required by ca-certs]
  - install domain-name                     0.5.0         [required by ipaddr]
  - install dune                            3.21.1        [required by opentelemetry-client-cohttp-lwt]
  - install dune-configurator               3.21.1        [required by base, lwt, mirage-crypto]
  - install duration                        0.2.1         [required by mirage-crypto-rng]
  - install eqaf                            0.10          [required by digestif, mirage-crypto]
  - install fmt                             0.11.0        [required by cohttp-lwt-unix]
  - install fpath                           0.7.3         [required by ca-certs]
  - install gmap                            0.3.0         [required by x509]
  - install hmap                            0.8.1         [required by opentelemetry]
  - install http                            6.2.1         [required by cohttp-lwt, cohttp-lwt-unix]
  - install ipaddr                          5.6.2         [required by cohttp-lwt]
  - 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 cohttp-lwt, cohttp-lwt-unix]
  - install lwt                             5.9.2         [required by opentelemetry-client-cohttp-lwt]
  - install lwt_ppx                         5.9.1         [required by opentelemetry-client-cohttp-lwt]
  - install macaddr                         5.6.2         [required by ipaddr]
  - install magic-mime                      1.3.1         [required by cohttp-lwt-unix]
  - install mirage-crypto                   2.0.3         [required by ca-certs]
  - install mirage-crypto-ec                2.0.3         [required by x509]
  - install mirage-crypto-pk                2.0.3         [required by x509]
  - install mirage-crypto-rng               2.0.3         [required by x509]
  - install mtime                           2.1.0         [required by opentelemetry-client-cohttp-lwt]
  - install ocaml-compiler-libs             v0.12.4       [required by ppxlib]
  - install ocaml-syntax-shims              1.0.0         [required by angstrom]
  - 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 ohex                            0.2.0         [required by ca-certs]
  - install opentelemetry                   0.13          [required by opentelemetry-client-cohttp-lwt]
  - install opentelemetry-client-cohttp-lwt 0.13 (pinned)
  - install opentelemetry-lwt               0.13          [required by opentelemetry-client-cohttp-lwt]
  - install pbrt                            3.1.1         [required by opentelemetry]
  - install ppx_derivers                    1.2.1         [required by ppxlib]
  - install ppx_sexp_conv                   v0.16.0       [required by cohttp-lwt, cohttp-lwt-unix]
  - install ppxlib                          0.35.0        [required by lwt_ppx]
  - install ptime                           1.2.0         [required by opentelemetry]
  - install re                              1.14.0        [required by cohttp]
  - install rresult                         0.7.0         [required by bos]
  - install sexplib0                        v0.16.0       [required by cohttp-lwt]
  - install stdlib-shims                    0.3.0         [required by pbrt]
  - install stringext                       1.6.0         [required by cohttp]
  - install thread-local-storage            0.2           [required by opentelemetry]
  - install topkg                           1.1.1         [required by mtime]
  - install uri                             4.4.0         [required by cohttp-lwt]
  - install uri-sexp                        4.4.0         [required by cohttp]
  - 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"
- Refreshing service 'openSUSE'.
- 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:   353.0 KiB
- 
- Package install size change:
-               |       1.1 MiB  required by packages that will be installed
-      1.1 MiB  |  -      0 B    released by packages that will be removed
- 
- Backend:  classic_rpmtrans
- Continue? [y/n/v/...? shows all options] (y): y
- Preloading Packages [..
- Preloading: libgmpxx4-6.3.0-160000.2.2.x86_64.rpm [done]
- .
- 
- Preloading: gmp-devel-6.3.0-160000.2.2.x86_64.rpm [Error: "The requested URL returned error: 404", trying next mirror.]
- ..
- Preloading: gmp-devel-6.3.0-160000.2.2.x86_64.rpm [done]
- .done]
- Retrieving: libgmpxx4-6.3.0-160000.2.2.x86_64 (repo-oss (16.0)) (1/2),  32.3 KiB    
- Retrieving: gmp-devel-6.3.0-160000.2.2.x86_64 (repo-oss (16.0)) (2/2), 320.7 KiB    
- 
- Checking for file conflicts: [..done]
- (1/2) Installing: libgmpxx4-6.3.0-160000.2.2.x86_64 [..done]
- (2/2) Installing: gmp-devel-6.3.0-160000.2.2.x86_64 [..done]
- Running post-transaction scripts [...done]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ambient-context.0.2  (cached)
-> retrieved angstrom.0.16.1  (cached)
-> retrieved asn1-combinators.0.3.2  (cached)
-> retrieved astring.0.8.5  (cached)
-> retrieved atomic.base  (cached)
-> installed atomic.base
-> retrieved base.v0.16.4  (cached)
-> retrieved base64.3.5.2  (cached)
-> retrieved bigstringaf.0.10.0  (cached)
-> retrieved bos.0.2.1  (cached)
-> retrieved ca-certs.1.0.1  (cached)
-> retrieved cmdliner.2.1.0  (cached)
-> retrieved cohttp.6.2.1, cohttp-lwt.6.2.1, cohttp-lwt-unix.6.2.1, http.6.2.1  (cached)
-> retrieved conduit.8.0.0, conduit-lwt.8.0.0, conduit-lwt-unix.8.0.0  (cached)
-> retrieved conf-gmp.5  (cached)
-> retrieved conf-gmp-powm-sec.4  (cached)
-> retrieved cppo.1.8.0  (cached)
-> retrieved csexp.1.5.2  (cached)
-> installed conf-gmp.5
-> installed conf-pkg-config.4
-> installed conf-gmp-powm-sec.4
-> retrieved digestif.1.3.0  (cached)
-> retrieved domain-name.0.5.0  (cached)
-> retrieved dune.3.21.1, dune-configurator.3.21.1  (cached)
-> retrieved duration.0.2.1  (cached)
-> retrieved eqaf.0.10  (cached)
-> retrieved fmt.0.11.0  (cached)
-> retrieved fpath.0.7.3  (cached)
-> retrieved gmap.0.3.0  (cached)
-> retrieved hmap.0.8.1  (cached)
-> retrieved ipaddr.5.6.2, ipaddr-sexp.5.6.2, macaddr.5.6.2  (cached)
-> retrieved kdf.1.0.0  (cached)
-> retrieved logs.0.10.0  (cached)
-> installed cmdliner.2.1.0
-> retrieved lwt.5.9.2  (cached)
-> retrieved lwt_ppx.5.9.1  (cached)
-> retrieved magic-mime.1.3.1  (cached)
-> retrieved mirage-crypto.2.0.3, mirage-crypto-ec.2.0.3, mirage-crypto-pk.2.0.3, mirage-crypto-rng.2.0.3  (cached)
-> retrieved mtime.2.1.0  (cached)
-> retrieved ocaml-compiler-libs.v0.12.4  (cached)
-> retrieved ocaml-syntax-shims.1.0.0  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ocplib-endian.1.2  (cached)
-> retrieved ohex.0.2.0  (cached)
-> retrieved opentelemetry.0.13, opentelemetry-client-cohttp-lwt.0.13, opentelemetry-lwt.0.13  (cached)
-> retrieved pbrt.3.1.1  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppx_sexp_conv.v0.16.0  (cached)
-> retrieved ppxlib.0.35.0  (cached)
-> retrieved ptime.1.2.0  (cached)
-> retrieved re.1.14.0  (cached)
-> retrieved rresult.0.7.0  (cached)
-> retrieved sexplib0.v0.16.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved stringext.1.6.0  (cached)
-> retrieved thread-local-storage.0.2  (cached)
-> retrieved topkg.1.1.1  (cached)
-> retrieved uri.4.4.0, uri-sexp.4.4.0  (cached)
-> retrieved x509.1.0.6  (cached)
-> retrieved zarith.1.14  (cached)
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed zarith.1.14
-> installed hmap.0.8.1
-> installed rresult.0.7.0
-> installed fmt.0.11.0
-> installed mtime.2.1.0
-> installed ptime.1.2.0
-> installed astring.0.8.5
-> installed fpath.0.7.3
-> installed dune.3.21.1
-> installed duration.0.2.1
-> installed gmap.0.3.0
-> installed ppx_derivers.1.2.1
-> installed domain-name.0.5.0
-> installed base64.3.5.2
-> installed macaddr.5.6.2
-> installed csexp.1.5.2
-> installed asn1-combinators.0.3.2
-> installed cppo.1.8.0
-> installed eqaf.0.10
-> installed http.6.2.1
-> installed magic-mime.1.3.1
-> installed ocaml-compiler-libs.v0.12.4
-> installed ocaml-syntax-shims.1.0.0
-> installed ohex.0.2.0
-> installed re.1.14.0
-> installed sexplib0.v0.16.0
-> installed stdlib-shims.0.3.0
-> installed stringext.1.6.0
-> installed thread-local-storage.0.2
-> installed ipaddr.5.6.2
-> installed ocplib-endian.1.2
-> installed pbrt.3.1.1
-> installed ambient-context.0.2
-> installed digestif.1.3.0
-> installed dune-configurator.3.21.1
-> installed bigstringaf.0.10.0
-> installed angstrom.0.16.1
-> installed uri.4.4.0
-> installed lwt.5.9.2
-> installed mirage-crypto.2.0.3
-> installed kdf.1.0.0
-> installed logs.0.10.0
-> installed mirage-crypto-rng.2.0.3
-> installed opentelemetry.0.13
-> installed base.v0.16.4
-> installed mirage-crypto-pk.2.0.3
-> installed bos.0.2.1
-> installed mirage-crypto-ec.2.0.3
-> installed x509.1.0.6
-> installed ca-certs.1.0.1
-> installed ppxlib.0.35.0
-> installed lwt_ppx.5.9.1
-> installed ppx_sexp_conv.v0.16.0
-> installed opentelemetry-lwt.0.13
-> installed uri-sexp.4.4.0
-> installed ipaddr-sexp.5.6.2
-> 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-cohttp-lwt.0.13
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-05 23:01.05 ---> saved as "23d0b4225ee7d2b76417250db0403867c67771495d69594c37ef617b22c9393a"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test opentelemetry-client-cohttp-lwt.0.13) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile opentelemetry-client-cohttp-lwt 0.13 (pinned)
=== install 4 packages
  - install   alcotest                        1.9.1         [required by opentelemetry-client-cohttp-lwt]
  - install   containers                      3.18          [required by opentelemetry-client-cohttp-lwt]
  - install   either                          1.0.0         [required by containers]
  - install   uutf                            1.0.4         [required by alcotest]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1  (https://opam.ocaml.org/cache)
-> retrieved containers.3.18  (https://opam.ocaml.org/cache)
-> retrieved either.1.0.0  (https://opam.ocaml.org/cache)
-> retrieved uutf.1.0.4  (https://opam.ocaml.org/cache)
-> installed either.1.0.0
-> removed   opentelemetry-client-cohttp-lwt.0.13
-> installed uutf.1.0.4
-> installed containers.3.18
-> installed alcotest.1.9.1
-> installed opentelemetry-client-cohttp-lwt.0.13
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-05 23:01.23 ---> saved as "4f706c8f3f0724eacae68c4061297dd4994becb3502e7a3cefe412c6727f4669"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  2/4: [opentelemetry-client-cohttp-lwt: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "opentelemetry-client-cohttp-lwt" "-j" "71" "--promote-install-files=false" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/opentelemetry-client-cohttp-lwt.0.13)
- (cd _build/default/tests/implicit_scope/sync && ./test_implicit_scope_sync.exe)
- Testing `implicit scope'.
- This run has ID `IVHGCJC4'.
- 
-   [OK]          sync          0   stack-based implicit scope.
- 
- Full test results in `~/.opam/4.14/.opam-switch/build/opentelemetry-client-cohttp-lwt.0.13/_build/default/tests/implicit_scope/sync/_build/_tests/implicit scope'.
- Test Successful in 0.601s. 1 test run.
Processing  2/4: [opentelemetry-client-cohttp-lwt: dune install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "install" "-p" "opentelemetry-client-cohttp-lwt" "--create-install-files" "opentelemetry-client-cohttp-lwt" (CWD=/home/opam/.opam/4.14/.opam-switch/build/opentelemetry-client-cohttp-lwt.0.13)
-> compiled  opentelemetry-client-cohttp-lwt.0.13
-> removed   opentelemetry-client-cohttp-lwt.0.13
-> installed opentelemetry-client-cohttp-lwt.0.13
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-05 23:01.35 ---> saved as "5f525d554a9318e1a8a5116e1736de7a4b28d9418e79d1ddca8d01f9bec37020"
Job succeeded
2026-03-05 23:01.57: Job succeeded