Build:
  1. 0
2026-01-23 02:35.52: New job: test ezcurl-lwt.0.3, using opam 2.1
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29257/head (95c7d10c303cc2a3b3559e7acf463232ea3f06af)
                              on debian-13-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/29257/head" && git reset --hard 95c7d10c
git fetch origin master
git merge --no-edit 69f4d66596cd0a420dffdd43036a9eeb0b410d84
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:423b7147c04b7e40a2168c2d5b3c2e77064aa5b144995d90eb305e6eb6874610
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-2.1 /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 ezcurl-lwt.0.3 0.3
RUN opam reinstall ezcurl-lwt.0.3; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'ezcurl-lwt.0.3' && 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 ezcurl-lwt.0.3) || true
RUN opam reinstall --with-test --verbose ezcurl-lwt.0.3; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'ezcurl-lwt.0.3' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1

END-OF-DOCKERFILE
docker build -f ../Dockerfile .

2026-01-23 02:35.52: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:423b7147c04b7e40a2168c2d5b3c2e77064aa5b144995d90eb305e6eb6874610-ezcurl-lwt.0.3-95c7d10c303cc2a3b3559e7acf463232ea3f06af"
2026-01-23 02:35.52: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:423b7147c04b7e40a2168c2d5b3c2e77064aa5b144995d90eb305e6eb6874610)
 (user (uid 1000) (gid 1000))
 (workdir /home/opam)
 (run (shell "sudo ln -f /usr/bin/opam-2.1 /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 ezcurl-lwt.0.3 0.3"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall ezcurl-lwt.0.3;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'ezcurl-lwt.0.3' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (network host)
      (shell "(opam reinstall --with-test ezcurl-lwt.0.3) || true"))
 (run (shell  "opam reinstall --with-test --verbose ezcurl-lwt.0.3;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'ezcurl-lwt.0.3' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-01-23 02:35.52: Waiting for resource in pool OCluster
2026-01-23 07:44.40: Waiting for worker…
2026-01-23 07:48.32: Got resource from pool OCluster
Building on odawa.caelum.ci.dev
All commits already cached
HEAD is now at 69f4d66596 Merge pull request #29159 from tbrk/release-ortools-9.14.0
Updating 69f4d66596..95c7d10c30
Fast-forward
 packages/ezcurl-lwt/ezcurl-lwt.0.3/opam | 41 +++++++++++++++++++++++++++++++++
 packages/ezcurl/ezcurl.0.3/opam         | 40 ++++++++++++++++++++++++++++++++
 2 files changed, 81 insertions(+)
 create mode 100644 packages/ezcurl-lwt/ezcurl-lwt.0.3/opam
 create mode 100644 packages/ezcurl/ezcurl.0.3/opam

(from ocaml/opam:debian-13-ocaml-4.14@sha256:423b7147c04b7e40a2168c2d5b3c2e77064aa5b144995d90eb305e6eb6874610)
2026-01-23 07:48.38 ---> using "af1ebcbd2c0e8a2a9bd41972ff6b1f2b27bf9dd52d9b45e003eb0eaad274be03" from cache

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-2.1 /usr/bin/opam"))
2026-01-23 07:48.38 ---> using "45f9da0a02aa40d5877bda59ce97bd1a87b541a1f7d3e197e9146adada16323e" from cache

/home/opam: (run (network host)
                 (shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
  - you won't be able to use mercurial repositories unless you install the hg command on your system.
  - you won't be able to use darcs repositories unless you install the darcs command on your system.

This development version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.1, which can't be reverted.
You may want to back it up before going further.

Continue? [Y/n] y
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-01-23 07:48.38 ---> using "0a612d02125d6695da30cdd6c6802e6ea924eb06e798a8df1d90b069799a9d56" 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.1.6 (263921263e1f745613e2882745114b7b08f3608b) 
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=debian os-version=13
# solver               builtin-0install
# install-criteria     
# upgrade-criteria     
# jobs                 71
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       4.14
# 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-01-23 07:48.38 ---> using "ffe7a6bce1e69ebdf445f8ab1938e33cd17183a25e858b641383e6f185a1e5ba" from cache

/home/opam: (env OPAMDOWNLOADJOBS 1)

/home/opam: (env OPAMERRLOGLEN 0)

/home/opam: (env OPAMPRECISETRACKING 1)

/home/opam: (env CI true)

/home/opam: (env OPAM_REPO_CI true)

/home/opam: (run (shell "rm -rf opam-repository/"))
2026-01-23 07:48.38 ---> using "3caa45c937d9eedf8616bab73032573510cd474c300b8f8ce274e72e8ff1f705" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-01-23 07:48.45 ---> saved as "a1677729cee7e8022c790914cdf484517f681bbeede6f883438980693e7d3b2f"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-01-23 07:48.55 ---> saved as "f0ea4d05613b9de234af0a9d6c1522e4dd67d5bc70b6beb506e70706cf98d04a"

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://deb.debian.org/debian trixie InRelease [140 kB]
- 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 trixie/main amd64 Packages [9670 kB]
- Get:5 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [97.9 kB]
- Fetched 9999 kB in 1s (10.8 MB/s)
- Reading package lists...
- 
2026-01-23 07:48.56 ---> saved as "b98972a318e080110c40f0287e11fd2b6a3dcfcf0b46f2ecda9b3116d4752ac0"

/home/opam: (run (shell "opam pin add -k version -yn ezcurl-lwt.0.3 0.3"))
ezcurl-lwt is now pinned to version 0.3
2026-01-23 07:48.57 ---> saved as "4b68fd7a78ec6617da691fd2418b14dc2667048395c2addc549523a0042267a4"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall ezcurl-lwt.0.3;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'ezcurl-lwt.0.3' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
ezcurl-lwt.0.3 is not installed. Install it? [Y/n] y
[ERROR] In the opam file for ocurl.transition:
          - At /home/opam/.opam/repo/default/packages/ocurl/ocurl.transition/opam:17:0-17:17::
            Unknown package flags deprecated ignored
        'flags' has been ignored.
The following actions will be performed:
  - install dune              3.21.0     [required by ezcurl-lwt]
  - install ocamlfind         1.9.8      [required by base-bytes]
  - install conf-libcurl      2          [required by curl]
  - install csexp             1.5.2      [required by dune-configurator]
  - install cppo              1.8.0      [required by lwt]
  - install base-bytes        base       [required by ocplib-endian]
  - install dune-configurator 3.21.0     [required by curl]
  - install ocplib-endian     1.2        [required by lwt]
  - install curl              0.10.0     [required by ocurl]
  - install lwt               5.9.2      [required by ezcurl-lwt]
  - install curl_lwt          0.10.0     [required by ocurl]
  - install ocurl             transition [required by ezcurl]
  - install ezcurl            0.3        [required by ezcurl-lwt]
  - install ezcurl-lwt        0.3*
===== 14 to install =====

The following system packages will first need to be installed:
    libcurl4-gnutls-dev

<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
Let opam run your package manager to install the required system packages?
(answer 'n' for other options) [Y/n] y
+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "libcurl4-gnutls-dev"
- (Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 20622 files and directories currently installed.)
- Preparing to unpack .../00-libcom-err2_1.47.2-3+b7_amd64.deb ...
- Unpacking libcom-err2:amd64 (1.47.2-3+b7) over (1.47.2-3+b3) ...
- Selecting previously unselected package comerr-dev:amd64.
- Preparing to unpack .../01-comerr-dev_2.1-1.47.2-3+b7_amd64.deb ...
- Unpacking comerr-dev:amd64 (2.1-1.47.2-3+b7) ...
- Selecting previously unselected package libgssrpc4t64:amd64.
- Preparing to unpack .../02-libgssrpc4t64_1.21.3-5_amd64.deb ...
- Unpacking libgssrpc4t64:amd64 (1.21.3-5) ...
- Selecting previously unselected package libkadm5clnt-mit12:amd64.
- Preparing to unpack .../03-libkadm5clnt-mit12_1.21.3-5_amd64.deb ...
- Unpacking libkadm5clnt-mit12:amd64 (1.21.3-5) ...
- Selecting previously unselected package libkdb5-10t64:amd64.
- Preparing to unpack .../04-libkdb5-10t64_1.21.3-5_amd64.deb ...
- Unpacking libkdb5-10t64:amd64 (1.21.3-5) ...
- Selecting previously unselected package libkadm5srv-mit12:amd64.
- Preparing to unpack .../05-libkadm5srv-mit12_1.21.3-5_amd64.deb ...
- Unpacking libkadm5srv-mit12:amd64 (1.21.3-5) ...
- Selecting previously unselected package krb5-multidev:amd64.
- Preparing to unpack .../06-krb5-multidev_1.21.3-5_amd64.deb ...
- Unpacking krb5-multidev:amd64 (1.21.3-5) ...
- Selecting previously unselected package libbrotli-dev:amd64.
- Preparing to unpack .../07-libbrotli-dev_1.1.0-2+b7_amd64.deb ...
- Unpacking libbrotli-dev:amd64 (1.1.0-2+b7) ...
- Preparing to unpack .../08-libgnutls30t64_3.8.9-3+deb13u1_amd64.deb ...
- Unpacking libgnutls30t64:amd64 (3.8.9-3+deb13u1) over (3.8.9-3) ...
- Selecting previously unselected package libevent-2.1-7t64:amd64.
- Preparing to unpack .../09-libevent-2.1-7t64_2.1.12-stable-10+b1_amd64.deb ...
- Unpacking libevent-2.1-7t64:amd64 (2.1.12-stable-10+b1) ...
- Selecting previously unselected package libunbound8:amd64.
- Preparing to unpack .../10-libunbound8_1.22.0-2+deb13u1_amd64.deb ...
- Unpacking libunbound8:amd64 (1.22.0-2+deb13u1) ...
- Selecting previously unselected package libgnutls-dane0t64:amd64.
- Preparing to unpack .../11-libgnutls-dane0t64_3.8.9-3+deb13u1_amd64.deb ...
- Unpacking libgnutls-dane0t64:amd64 (3.8.9-3+deb13u1) ...
- Selecting previously unselected package libgnutls-openssl27t64:amd64.
- Preparing to unpack .../12-libgnutls-openssl27t64_3.8.9-3+deb13u1_amd64.deb ...
- Unpacking libgnutls-openssl27t64:amd64 (3.8.9-3+deb13u1) ...
- Selecting previously unselected package libidn2-dev:amd64.
- Preparing to unpack .../13-libidn2-dev_2.3.8-2_amd64.deb ...
- Unpacking libidn2-dev:amd64 (2.3.8-2) ...
- Selecting previously unselected package libp11-kit-dev:amd64.
- Preparing to unpack .../14-libp11-kit-dev_0.25.5-3_amd64.deb ...
- Unpacking libp11-kit-dev:amd64 (0.25.5-3) ...
- Selecting previously unselected package libtasn1-6-dev:amd64.
- Preparing to unpack .../15-libtasn1-6-dev_4.20.0-2_amd64.deb ...
- Unpacking libtasn1-6-dev:amd64 (4.20.0-2) ...
- Selecting previously unselected package libgmpxx4ldbl:amd64.
- Preparing to unpack .../16-libgmpxx4ldbl_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libgmp-dev:amd64.
- Preparing to unpack .../17-libgmp-dev_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package nettle-dev:amd64.
- Preparing to unpack .../18-nettle-dev_3.10.1-1_amd64.deb ...
- Unpacking nettle-dev:amd64 (3.10.1-1) ...
- Selecting previously unselected package libgnutls28-dev:amd64.
- Preparing to unpack .../19-libgnutls28-dev_3.8.9-3+deb13u1_amd64.deb ...
- Unpacking libgnutls28-dev:amd64 (3.8.9-3+deb13u1) ...
- Selecting previously unselected package libkrb5-dev:amd64.
- Preparing to unpack .../20-libkrb5-dev_1.21.3-5_amd64.deb ...
- Unpacking libkrb5-dev:amd64 (1.21.3-5) ...
- Selecting previously unselected package libldap-dev:amd64.
- Preparing to unpack .../21-libldap-dev_2.6.10+dfsg-1_amd64.deb ...
- Unpacking libldap-dev:amd64 (2.6.10+dfsg-1) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../22-libpkgconf3_1.8.1-4_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../23-pkgconf-bin_1.8.1-4_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../24-pkgconf_1.8.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-4) ...
- Selecting previously unselected package libnghttp2-dev:amd64.
- Preparing to unpack .../25-libnghttp2-dev_1.64.0-1.1_amd64.deb ...
- Unpacking libnghttp2-dev:amd64 (1.64.0-1.1) ...
- Selecting previously unselected package libnghttp3-dev:amd64.
- Preparing to unpack .../26-libnghttp3-dev_1.8.0-1_amd64.deb ...
- Unpacking libnghttp3-dev:amd64 (1.8.0-1) ...
- Selecting previously unselected package libngtcp2-crypto-gnutls-dev:amd64.
- Preparing to unpack .../27-libngtcp2-crypto-gnutls-dev_1.11.0-1_amd64.deb ...
- Unpacking libngtcp2-crypto-gnutls-dev:amd64 (1.11.0-1) ...
- Selecting previously unselected package libngtcp2-dev:amd64.
- Preparing to unpack .../28-libngtcp2-dev_1.11.0-1_amd64.deb ...
- Unpacking libngtcp2-dev:amd64 (1.11.0-1) ...
- Selecting previously unselected package libpsl-dev:amd64.
- Preparing to unpack .../29-libpsl-dev_0.21.2-1.1+b1_amd64.deb ...
- Unpacking libpsl-dev:amd64 (0.21.2-1.1+b1) ...
- Selecting previously unselected package zlib1g-dev:amd64.
- Preparing to unpack .../30-zlib1g-dev_1%3a1.3.dfsg+really1.3.1-1+b1_amd64.deb ...
- Unpacking zlib1g-dev:amd64 (1:1.3.dfsg+really1.3.1-1+b1) ...
- Selecting previously unselected package librtmp-dev:amd64.
- Preparing to unpack .../31-librtmp-dev_2.4+20151223.gitfa8646d.1-2+b5_amd64.deb ...
- Unpacking librtmp-dev:amd64 (2.4+20151223.gitfa8646d.1-2+b5) ...
- Selecting previously unselected package libssl-dev:amd64.
- Preparing to unpack .../32-libssl-dev_3.5.4-1~deb13u1_amd64.deb ...
- Unpacking libssl-dev:amd64 (3.5.4-1~deb13u1) ...
- Selecting previously unselected package libssh2-1-dev:amd64.
- Preparing to unpack .../33-libssh2-1-dev_1.11.1-1_amd64.deb ...
- Unpacking libssh2-1-dev:amd64 (1.11.1-1) ...
- Selecting previously unselected package libzstd-dev:amd64.
- Preparing to unpack .../34-libzstd-dev_1.5.7+dfsg-1_amd64.deb ...
- Unpacking libzstd-dev:amd64 (1.5.7+dfsg-1) ...
- Selecting previously unselected package libcurl4-gnutls-dev:amd64.
- Preparing to unpack .../35-libcurl4-gnutls-dev_8.14.1-2+deb13u2_amd64.deb ...
- Unpacking libcurl4-gnutls-dev:amd64 (8.14.1-2+deb13u2) ...
- Selecting previously unselected package libtasn1-doc.
- Preparing to unpack .../36-libtasn1-doc_4.20.0-2_all.deb ...
- Unpacking libtasn1-doc (4.20.0-2) ...
- Setting up libgnutls30t64:amd64 (3.8.9-3+deb13u1) ...
- Setting up libgnutls-openssl27t64:amd64 (3.8.9-3+deb13u1) ...
- Setting up libzstd-dev:amd64 (1.5.7+dfsg-1) ...
- Setting up libtasn1-doc (4.20.0-2) ...
- Setting up libevent-2.1-7t64:amd64 (2.1.12-stable-10+b1) ...
- Setting up libngtcp2-crypto-gnutls-dev:amd64 (1.11.0-1) ...
- Setting up libcom-err2:amd64 (1.47.2-3+b7) ...
- Setting up libngtcp2-dev:amd64 (1.11.0-1) ...
- Setting up libpsl-dev:amd64 (0.21.2-1.1+b1) ...
- Setting up libunbound8:amd64 (1.22.0-2+deb13u1) ...
- Setting up libpkgconf3:amd64 (1.8.1-4) ...
- Setting up libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Setting up libgnutls-dane0t64:amd64 (3.8.9-3+deb13u1) ...
- Setting up libgssrpc4t64:amd64 (1.21.3-5) ...
- Setting up libldap-dev:amd64 (2.6.10+dfsg-1) ...
- Setting up comerr-dev:amd64 (2.1-1.47.2-3+b7) ...
- Setting up libssl-dev:amd64 (3.5.4-1~deb13u1) ...
- Setting up pkgconf-bin (1.8.1-4) ...
- Setting up libidn2-dev:amd64 (2.3.8-2) ...
- Setting up libnghttp3-dev:amd64 (1.8.0-1) ...
- Setting up zlib1g-dev:amd64 (1:1.3.dfsg+really1.3.1-1+b1) ...
- Setting up libtasn1-6-dev:amd64 (4.20.0-2) ...
- Setting up libbrotli-dev:amd64 (1.1.0-2+b7) ...
- Setting up libp11-kit-dev:amd64 (0.25.5-3) ...
- Setting up libkadm5clnt-mit12:amd64 (1.21.3-5) ...
- Setting up libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Setting up nettle-dev:amd64 (3.10.1-1) ...
- Setting up libkdb5-10t64:amd64 (1.21.3-5) ...
- Setting up pkgconf:amd64 (1.8.1-4) ...
- Setting up libssh2-1-dev:amd64 (1.11.1-1) ...
- Setting up libkadm5srv-mit12:amd64 (1.21.3-5) ...
- Setting up krb5-multidev:amd64 (1.21.3-5) ...
- Setting up libgnutls28-dev:amd64 (3.8.9-3+deb13u1) ...
- Setting up libnghttp2-dev:amd64 (1.64.0-1.1) ...
- Setting up libkrb5-dev:amd64 (1.21.3-5) ...
- Setting up librtmp-dev:amd64 (2.4+20151223.gitfa8646d.1-2+b5) ...
- Setting up libcurl4-gnutls-dev:amd64 (8.14.1-2+deb13u2) ...
- Processing triggers for libc-bin (2.41-12) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved cppo.1.8.0  (cached)
-> retrieved csexp.1.5.2  (cached)
-> installed conf-libcurl.2
-> retrieved curl.0.10.0  (cached)
-> retrieved curl_lwt.0.10.0  (cached)
-> retrieved dune.3.21.0  (cached)
-> retrieved dune-configurator.3.21.0  (cached)
-> retrieved ezcurl.0.3  (cached)
-> retrieved ezcurl-lwt.0.3  (cached)
-> retrieved lwt.5.9.2  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ocplib-endian.1.2  (cached)
-> retrieved ocurl.transition  (cached)
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed dune.3.21.0
-> installed csexp.1.5.2
-> installed cppo.1.8.0
-> installed ocplib-endian.1.2
-> installed dune-configurator.3.21.0
-> installed curl.0.10.0
-> installed lwt.5.9.2
-> installed curl_lwt.0.10.0
-> installed ocurl.transition
-> installed ezcurl.0.3
-> installed ezcurl-lwt.0.3
Done.

<><> ocurl.transition installed successfully ><><><><><><><><><><><><><><><><><>
=> ocurl has been renamed and the ocurl package is now a transition package. Use the curl package instead.
# Run eval $(opam env) to update the current shell environment
2026-01-23 07:49.30 ---> saved as "457a33e45e822e0150161fdb1063c75cf0667bd723305c9278359354b6e58f80"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test ezcurl-lwt.0.3) || true"))
The following actions will be performed:
  - install   result        1.5    [required by mdx]
  - install   camlp-streams 5.0.1  [required by mdx]
  - install   ocamlbuild    0.16.1 [required by fmt, astring, logs]
  - install   re            1.14.0 [required by mdx]
  - install   ocaml-version 4.0.3  [required by mdx]
  - install   cmdliner      2.1.0  [required by mdx]
  - install   topkg         1.1.1  [required by fmt, astring, logs]
  - install   fmt           0.11.0 [required by mdx]
  - install   astring       0.8.5  [required by mdx]
  - install   logs          0.10.0 [required by mdx]
  - install   mdx           2.5.1  [required by ezcurl-lwt]
  - recompile ezcurl-lwt    0.3*
===== 11 to install | 1 to recompile =====

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved astring.0.8.5  (https://opam.ocaml.org/cache)
-> retrieved camlp-streams.5.0.1  (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)
-> installed camlp-streams.5.0.1
-> retrieved logs.0.10.0  (https://opam.ocaml.org/cache)
-> retrieved mdx.2.5.1  (https://opam.ocaml.org/cache)
-> retrieved ocaml-version.4.0.3  (https://opam.ocaml.org/cache)
-> installed ocaml-version.4.0.3
-> retrieved ocamlbuild.0.16.1  (https://opam.ocaml.org/cache)
-> retrieved re.1.14.0  (https://opam.ocaml.org/cache)
-> retrieved result.1.5  (https://opam.ocaml.org/cache)
-> installed result.1.5
-> retrieved topkg.1.1.1  (https://opam.ocaml.org/cache)
-> installed re.1.14.0
-> installed cmdliner.2.1.0
-> removed   ezcurl-lwt.0.3
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed fmt.0.11.0
-> installed astring.0.8.5
-> installed logs.0.10.0
-> installed mdx.2.5.1
[ERROR] The compilation of ezcurl-lwt.0.3 failed at "dune build -p ezcurl-lwt -j 71 @install @runtest".

#=== ERROR while compiling ezcurl-lwt.0.3 =====================================#
# context              2.1.6 | linux/x86_64 | ocaml-base-compiler.4.14.2 | pinned(https://github.com/c-cube/ezcurl/releases/download/v0.3/ezcurl-0.3.tbz)
# path                 ~/.opam/4.14/.opam-switch/build/ezcurl-lwt.0.3
# command              ~/.opam/opam-init/hooks/sandbox.sh build dune build -p ezcurl-lwt -j 71 @install @runtest
# exit-code            1
# env-file             ~/.opam/log/ezcurl-lwt-7-5f21a4.env
# output-file          ~/.opam/log/ezcurl-lwt-7-5f21a4.out
### output ###
# File "README.md", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u _build/default/README.md _build/default/README.md.corrected
# diff --git a/_build/default/README.md b/_build/default/README.md.corrected
# index f2788b7..10a9cab 100644
# --- a/_build/default/README.md
# +++ b/_build/default/README.md.corrected
# @@ -33,11 +33,11 @@ val url : string = "https://curl.haxx.se/"
#  # let res = Ezcurl.get ~url ();;
#  ...
#  # let content = match res with Ok c -> c | Error (_,s) -> failwith s;;
# -val content : string Ezcurl_core.response =
# -...
# +Exception: Failure "Could not resolve hostname".
#  
#  # content.Ezcurl.code;;
# -- : int = 200
# +Line 1, characters 1-8:
# +Error: Unbound value content
#  ```
#  
#  It is also possible to create a client with `Ezcurl.make()` and re-use



<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions failed
| - build ezcurl-lwt 0.3
+- 
+- The following changes have been performed
| - remove  ezcurl-lwt    0.3
| - install astring       0.8.5
| - install camlp-streams 5.0.1
| - install cmdliner      2.1.0
| - install fmt           0.11.0
| - install logs          0.10.0
| - install mdx           2.5.1
| - install ocaml-version 4.0.3
| - install ocamlbuild    0.16.1
| - install re            1.14.0
| - install result        1.5
| - install topkg         1.1.1
+- 
# Run eval $(opam env) to update the current shell environment

The former state can be restored with:
    /usr/bin/opam switch import "/home/opam/.opam/4.14/.opam-switch/backup/state-20260123074931.export"
Or you can retry to install your package selection with:
    /usr/bin/opam install --restore
2026-01-23 07:49.52 ---> saved as "36d0303be68acc40f77d10efd391b7f5e05cd90aa5a66eb236646621e3b5b07f"

/home/opam: (run (shell  "opam reinstall --with-test --verbose ezcurl-lwt.0.3;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'ezcurl-lwt.0.3' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
ezcurl-lwt.0.3 is not installed. Install it? [Y/n] y
The following actions will be performed:
  - install ezcurl-lwt 0.3*

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  2/3: [ezcurl-lwt: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "ezcurl-lwt" "-j" "71" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/ezcurl-lwt.0.3)
- File "README.md", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u _build/default/README.md _build/default/README.md.corrected
- diff --git a/_build/default/README.md b/_build/default/README.md.corrected
- index f2788b7..10a9cab 100644
- --- a/_build/default/README.md
- +++ b/_build/default/README.md.corrected
- @@ -33,11 +33,11 @@ val url : string = "https://curl.haxx.se/"
-  # let res = Ezcurl.get ~url ();;
-  ...
-  # let content = match res with Ok c -> c | Error (_,s) -> failwith s;;
- -val content : string Ezcurl_core.response =
- -...
- +Exception: Failure "Could not resolve hostname".
-  
-  # content.Ezcurl.code;;
- -- : int = 200
- +Line 1, characters 1-8:
- +Error: Unbound value content
-  ```
-  
-  It is also possible to create a client with `Ezcurl.make()` and re-use
[ERROR] The compilation of ezcurl-lwt.0.3 failed at "dune build -p ezcurl-lwt -j 71 @install @runtest".

#=== ERROR while compiling ezcurl-lwt.0.3 =====================================#
# context              2.1.6 | linux/x86_64 | ocaml-base-compiler.4.14.2 | pinned(https://github.com/c-cube/ezcurl/releases/download/v0.3/ezcurl-0.3.tbz)
# path                 ~/.opam/4.14/.opam-switch/build/ezcurl-lwt.0.3
# command              ~/.opam/opam-init/hooks/sandbox.sh build dune build -p ezcurl-lwt -j 71 @install @runtest
# exit-code            1
# env-file             ~/.opam/log/ezcurl-lwt-7-3706c1.env
# output-file          ~/.opam/log/ezcurl-lwt-7-3706c1.out
### output ###
# File "README.md", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u _build/default/README.md _build/default/README.md.corrected
# diff --git a/_build/default/README.md b/_build/default/README.md.corrected
# index f2788b7..10a9cab 100644
# --- a/_build/default/README.md
# +++ b/_build/default/README.md.corrected
# @@ -33,11 +33,11 @@ val url : string = "https://curl.haxx.se/"
#  # let res = Ezcurl.get ~url ();;
#  ...
#  # let content = match res with Ok c -> c | Error (_,s) -> failwith s;;
# -val content : string Ezcurl_core.response =
# -...
# +Exception: Failure "Could not resolve hostname".
#  
#  # content.Ezcurl.code;;
# -- : int = 200
# +Line 1, characters 1-8:
# +Error: Unbound value content
#  ```
#  
#  It is also possible to create a client with `Ezcurl.make()` and re-use



<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions failed
| - build ezcurl-lwt 0.3
+- 
- No changes have been performed
# Run eval $(opam env) to update the current shell environment
'opam reinstall --with-test --verbose ezcurl-lwt.0.3' failed.
[WARNING] OPAMCONFIRMLEVEL was ignored because CLI 2.0 was requested and it was introduced in 2.1.
[WARNING] OPAMCONFIRMLEVEL was ignored because CLI 2.0 was requested and it was introduced in 2.1.
"/usr/bin/env" "bash" "-c" "opam reinstall --with-test --verbose ezcurl-lwt.0.3;
        res=$?;
        test "$res" != 31 && exit "$res";
        export OPAMCLI=2.0;
        build_dir=$(opam var prefix)/.opam-switch/build;
        failed=$(ls "$build_dir");
        partial_fails="";
        for pkg in $failed; do
          if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then
            echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.";
          fi;
          test "$pkg" != 'ezcurl-lwt.0.3' && partial_fails="$partial_fails $pkg";
        done;
        test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}";
        exit 1" failed with exit status 1
2026-01-23 07:50.09: Job failed: Failed: Build failed
2026-01-23 07:50.09: Log analysis:
2026-01-23 07:50.09: >>> 
[ERROR] In the opam file for ocurl.transition:
 (score = 20)
2026-01-23 07:50.09: >>> 
[ERROR] The compilation of ezcurl-lwt.0.3 failed at "dune build -p ezcurl-lwt -j 71 @install @runtest".
 (score = 20)
2026-01-23 07:50.09: >>> 
[ERROR] The compilation of ezcurl-lwt.0.3 failed at "dune build -p ezcurl-lwt -j 71 @install @runtest".
 (score = 20)
2026-01-23 07:50.09: In the opam file for ocurl.transition: