Build:
  1. 0
2026-02-20 10:14.18: New job: test mhttp.0.0.1, using opam 2.0
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29441/head (03a32901138b2da17acfb262503ab5e0755499b8)
                              on debian-13-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/29441/head" && git reset --hard 03a32901
git fetch origin master
git merge --no-edit d18d14011e4188f5c398421e2e99b297dd8150fb
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-2.0 /usr/bin/opam
RUN opam init --reinit -ni
RUN 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 depext -u || true
RUN opam pin add -k version -yn mhttp.0.0.1 0.0.1
RUN opam depext mhttp.0.0.1 && opam reinstall mhttp.0.0.1; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'mhttp.0.0.1' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN (opam depext --with-test mhttp.0.0.1 && opam reinstall --with-test mhttp.0.0.1) || true
RUN opam depext --with-test mhttp.0.0.1 && opam reinstall --with-test --verbose mhttp.0.0.1; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'mhttp.0.0.1' && 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-02-20 10:14.18: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c-mhttp.0.0.1-03a32901138b2da17acfb262503ab5e0755499b8"
2026-02-20 10:14.18: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c)
 (user (uid 1000) (gid 1000))
 (workdir /home/opam)
 (run (shell "sudo ln -f /usr/bin/opam-2.0 /usr/bin/opam"))
 (run (network host)
      (shell "opam init --reinit --config .opamrc-sandbox -ni"))
 (run (shell "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 depext -u || true"))
 (run (shell "opam pin add -k version -yn mhttp.0.0.1 0.0.1"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam depext mhttp.0.0.1 && opam reinstall mhttp.0.0.1;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-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\" != 'mhttp.0.0.1' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (network host)
      (shell "(opam depext --with-test mhttp.0.0.1 && opam reinstall --with-test mhttp.0.0.1) || true"))
 (run (shell  "opam depext --with-test mhttp.0.0.1 && opam reinstall --with-test --verbose mhttp.0.0.1;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-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\" != 'mhttp.0.0.1' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-02-20 10:14.18: Waiting for resource in pool OCluster
2026-02-20 10:16.04: Waiting for worker…
2026-02-20 10:20.52: Got resource from pool OCluster
Building on toxis.caelum.ci.dev
All commits already cached
Updating files:  70% (12959/18292)
Updating files:  71% (12988/18292)
Updating files:  72% (13171/18292)
Updating files:  73% (13354/18292)
Updating files:  74% (13537/18292)
Updating files:  75% (13719/18292)
Updating files:  76% (13902/18292)
Updating files:  77% (14085/18292)
Updating files:  78% (14268/18292)
Updating files:  79% (14451/18292)
Updating files:  80% (14634/18292)
Updating files:  81% (14817/18292)
Updating files:  82% (15000/18292)
Updating files:  83% (15183/18292)
Updating files:  84% (15366/18292)
Updating files:  85% (15549/18292)
Updating files:  86% (15732/18292)
Updating files:  87% (15915/18292)
Updating files:  88% (16097/18292)
Updating files:  89% (16280/18292)
Updating files:  90% (16463/18292)
Updating files:  91% (16646/18292)
Updating files:  92% (16829/18292)
Updating files:  93% (17012/18292)
Updating files:  94% (17195/18292)
Updating files:  95% (17378/18292)
Updating files:  96% (17561/18292)
Updating files:  97% (17744/18292)
Updating files:  98% (17927/18292)
Updating files:  99% (18110/18292)
Updating files: 100% (18292/18292)
Updating files: 100% (18292/18292), done.
HEAD is now at d18d14011e Merge pull request #29430 from hannesm/release-ipaddr-v5.6.2
Merge made by the 'ort' strategy.
 packages/mhttp-client/mhttp-client.0.0.1/opam | 30 +++++++++++++++++++++++++
 packages/mhttp-server/mhttp-server.0.0.1/opam | 30 +++++++++++++++++++++++++
 packages/mhttp/mhttp.0.0.1/opam               | 32 +++++++++++++++++++++++++++
 3 files changed, 92 insertions(+)
 create mode 100644 packages/mhttp-client/mhttp-client.0.0.1/opam
 create mode 100644 packages/mhttp-server/mhttp-server.0.0.1/opam
 create mode 100644 packages/mhttp/mhttp.0.0.1/opam

(from ocaml/opam:debian-13-ocaml-5.4@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c)
2026-02-20 10:21.05 ---> using "3c18c9e472a4f76bc128dc0a5a1e21158ba3dbd0d6773ace6ec33f0cfe6fac9b" from cache

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-2.0 /usr/bin/opam"))
2026-02-20 10:21.05 ---> using "9977b265c0c2169e3d6e1d5fd30288788cef6fa2098b216c383dbe2f2af5d3be" from cache

/home/opam: (run (network host)
                 (shell "opam init --reinit --config .opamrc-sandbox -ni"))
[NOTE] Will configure 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.

[WARNING] Recommended dependencies -- most packages rely on these:
  - m4

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
default (at git+file:///home/opam/opam-repository): 
    [INFO] opam 2.1 and 2.2 include many performance and security improvements over 2.0; please consider upgrading (https://opam.ocaml.org/doc/Install.html)

2026-02-20 10:21.05 ---> using "9db4ce202e63f28fbf637045209431c2712a649b3d599ee21c42ca79a8b8f601" from cache

/home/opam: (run (shell "opam config report"))
# opam config report
# opam-version      2.0.10 (adc1e1829a2bef5b240746df80341b508290fe3b) 
# self-upgrade      no
# system            arch=x86_64 os=linux os-distribution=debian os-version=13
# solver            builtin-mccs+glpk
# install-criteria  -removed,-count[version-lag,request],-count[version-lag,changed],-changed
# upgrade-criteria  -removed,-count[version-lag,solution],-new
# jobs              71
# repositories      1 (version-controlled)
# pinned            1 (version)
# current-switch    5.4
2026-02-20 10:21.05 ---> using "9d723489c4ffa196e512eaebf98a1efe43ed5b2d8d1bbf1c8e8e385abac1d516" 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-02-20 10:21.05 ---> using "faef83b30c7783db3d1569810b91945d51f81e1a6b9da9881987b9c3f598b75f" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-02-20 10:21.09 ---> saved as "f0f5a1b7de59ef8d5952a9f0d6bdd67457547a979be81147cd25f9dbff1a9d1a"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
default (at file:///home/opam/opam-repository): 
    [INFO] opam 2.1 and 2.2 include many performance and security improvements over 2.0; please consider upgrading (https://opam.ocaml.org/doc/Install.html)

2026-02-20 10:21.30 ---> saved as "36455be104f22a95ba520e9e7dc47a6066b3511f32eaf1d70f2da8123b5d5a20"

/home/opam: (run (network host)
                 (shell "opam depext -u || true"))
# Detecting depexts using vars: arch=x86_64, os=linux, os-distribution=debian, os-family=debian
# No extra OS packages requirements found.
# All required OS packages found.
The following command needs to be run through "sudo":
    apt-get update
Hit:1 http://deb.debian.org/debian trixie InRelease
Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
Get:4 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [112 kB]
Fetched 203 kB in 0s (1074 kB/s)
Reading package lists...
# OS package update successful
2026-02-20 10:21.33 ---> saved as "48a0ff25904211949084c622192ebf308e0bcd0553839267dbf2d34395c61968"

/home/opam: (run (shell "opam pin add -k version -yn mhttp.0.0.1 0.0.1"))
mhttp is now pinned to version 0.0.1
2026-02-20 10:21.34 ---> saved as "b3ac7f0381a9a9c158e37ec3122b5002165e3ceb2eb6f6ac1f3b9e62b21b219d"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam depext mhttp.0.0.1 && opam reinstall mhttp.0.0.1;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-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\" != 'mhttp.0.0.1' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
# Detecting depexts using vars: arch=x86_64, os=linux, os-distribution=debian, os-family=debian
# The following system packages are needed:
libgmp-dev
libseccomp-dev
linux-libc-dev
pkg-config
The following command needs to be run through "sudo":
    apt-get install -qq -yy libgmp-dev libseccomp-dev linux-libc-dev pkg-config
Selecting previously unselected package libgmpxx4ldbl:amd64.
(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 20654 files and directories currently installed.)
Preparing to unpack .../0-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 .../1-libgmp-dev_2%3a6.3.0+dfsg-3_amd64.deb ...
Unpacking libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
Selecting previously unselected package libpkgconf3:amd64.
Preparing to unpack .../2-libpkgconf3_1.8.1-4_amd64.deb ...
Unpacking libpkgconf3:amd64 (1.8.1-4) ...
Selecting previously unselected package libseccomp-dev:amd64.
Preparing to unpack .../3-libseccomp-dev_2.6.0-2_amd64.deb ...
Unpacking libseccomp-dev:amd64 (2.6.0-2) ...
Preparing to unpack .../4-linux-libc-dev_6.12.73-1_all.deb ...
Unpacking linux-libc-dev (6.12.73-1) over (6.12.63-1) ...
Selecting previously unselected package pkgconf-bin.
Preparing to unpack .../5-pkgconf-bin_1.8.1-4_amd64.deb ...
Unpacking pkgconf-bin (1.8.1-4) ...
Selecting previously unselected package pkgconf:amd64.
Preparing to unpack .../6-pkgconf_1.8.1-4_amd64.deb ...
Unpacking pkgconf:amd64 (1.8.1-4) ...
Selecting previously unselected package pkg-config:amd64.
Preparing to unpack .../7-pkg-config_1.8.1-4_amd64.deb ...
Unpacking pkg-config:amd64 (1.8.1-4) ...
Setting up libseccomp-dev:amd64 (2.6.0-2) ...
Setting up linux-libc-dev (6.12.73-1) ...
Setting up libpkgconf3:amd64 (1.8.1-4) ...
Setting up libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
Setting up pkgconf-bin (1.8.1-4) ...
Setting up libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
Setting up pkgconf:amd64 (1.8.1-4) ...
Setting up pkg-config:amd64 (1.8.1-4) ...
Processing triggers for libc-bin (2.41-12+deb13u1) ...
# OS packages installation successful
mhttp.0.0.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
  - install ocaml-src                5.4.0  [required by ocaml-solo5]
  - install seq                      base   [required by psq]
  - install conf-gmp                 5      [required by conf-gmp-powm-sec, zarith]
  - install ocamlfind                1.9.8  [required by jsont, ptime, bos, etc.]
  - install ocamlbuild               0.16.1 [required by bytesrw, bos, ptime, jsont]
  - install dune                     3.21.1 [required by mhttp]
  - install cmdliner                 2.1.0  [required by hxd]
  - install conf-pkg-config          4      [required by bytesrw]
  - install conf-gmp-powm-sec        4      [required by mirage-crypto-pk]
  - install base-bytes               base   [required by ocplib-endian]
  - install topkg                    1.1.1  [required by bytesrw, bos, ptime, jsont]
  - install randomconv               0.2.0  [required by utcp]
  - install psq                      0.2.1  [required by h2]
  - install patch                    3.1.0  [required by opatch]
  - install ohex                     0.2.0  [required by ca-certs]
  - install ocaml-syntax-shims       1.0.0  [required by angstrom]
  - install macaddr                  5.6.2  [required by mnet]
  - install lwt-dllist               1.1.0  [required by tcpip]
  - install gmap                     0.3.0  [required by x509]
  - install eqaf                     0.10   [required by digestif, mirage-crypto]
  - install duration                 0.2.1  [required by mnet]
  - install domain-name              0.5.0  [required by dns-client-miou-unix]
  - install csexp                    1.5.2  [required by dune-configurator]
  - install cppo                     1.8.0  [required by lwt]
  - install bstr                     0.0.4  [required by httpcats, mnet]
  - install base64                   3.5.2  [required by h2, h1, utcp]
  - install zarith                   1.14   [required by mirage-crypto-pk]
  - install conf-libseccomp          1      [required by solo5]
  - install rresult                  0.7.0  [required by bos]
  - install ptime                    1.2.0  [required by ca-certs]
  - install mtime                    2.1.0  [required by utcp]
  - install fmt                      0.11.0 [required by mnet]
  - install bytesrw                  0.3.0  [required by mkernel]
  - install astring                  0.8.5  [required by bos]
  - install lru                      0.3.1  [required by tcpip]
  - install opatch                   3.1.0  [required by ocaml-solo5]
  - install digestif                 1.3.0  [required by ca-certs]
  - install ipaddr                   5.6.2  [required by mnet]
  - install dune-configurator        3.21.1 [required by hxd]
  - install ocplib-endian            1.2    [required by lwt]
  - install slice                    0.0.4  [required by mnet]
  - install solo5                    0.10.0 [required by mkernel]
  - install asn1-combinators         0.3.2  [required by x509]
  - install mirage-mtime             5.2.0  [required by utcp]
  - install metrics                  0.5.0  [required by utcp]
  - install cstruct                  6.2.0  [required by utcp]
  - install jsont                    0.2.0  [required by mkernel]
  - install fpath                    0.7.3  [required by ca-certs]
  - install mirage-crypto            2.0.3  [required by ca-certs]
  - install miou                     0.5.4  [required by httpcats]
  - install bigstringaf              0.10.0 [required by h2]
  - install lwt                      6.1.0  [required by hxd, utcp]
  - install bin                      0.0.4  [required by mnet]
  - install ocaml-solo5              1.2.0  [required by mkernel]
  - install macaddr-cstruct          5.6.2  [required by tcpip]
  - install ipaddr-cstruct           5.6.2  [required by utcp]
  - install kdf                      1.0.0  [required by x509]
  - install faraday                  0.8.2  [required by h1, h2]
  - install angstrom                 0.16.1 [required by h1, h2]
  - install mirage-sleep             4.1.0  [required by utcp]
  - install mirage-net               4.0.0  [required by tcpip]
  - install mirage-flow              5.0.0  [required by tcpip]
  - install logs                     0.10.0 [required by mkernel, ca-certs, utcp]
  - install hxd                      0.4.0  [required by mnet]
  - install cstruct-lwt              6.2.0  [required by tcpip]
  - install httpun-types             0.2.0  [required by h1, h2]
  - install hpack                    0.13.0 [required by h2]
  - install mkernel                  0.0.1  [required by mnet]
  - install mirage-crypto-rng        2.0.3  [required by mhttp]
  - install happy-eyeballs           2.0.1  [required by mnet]
  - install ethernet                 3.2.0  [required by tcpip]
  - install dns                      10.2.3 [required by dns-client]
  - install bos                      0.2.1  [required by ca-certs]
  - install h1                       1.1.0  [required by httpcats]
  - install h2                       0.13.0 [required by httpcats]
  - install mirage-crypto-pk         2.0.3  [required by x509]
  - install mirage-crypto-ec         2.0.3  [required by x509]
  - install happy-eyeballs-miou-unix 2.0.1  [required by httpcats]
  - install arp                      4.1.0  [required by tcpip]
  - install dns-client               10.2.3 [required by dns-client-miou-unix]
  - install x509                     1.0.6  [required by ca-certs]
  - install tcpip                    9.0.1  [required by utcp]
  - install tls                      2.0.3  [required by mnet, mnet-tls]
  - install ca-certs                 1.0.1  [required by httpcats]
  - install utcp                     0.0.2  [required by mnet, mnet-tls]
  - install tls-miou-unix            2.0.3  [required by httpcats]
  - install mnet                     0.0.1  [required by mhttp]
  - install dns-client-miou-unix     10.2.3 [required by httpcats]
  - install mnet-tls                 0.0.1  [required by mhttp]
  - install httpcats                 0.2.0  [required by mhttp]
  - install mhttp                    0.0.1*
===== 91 to install =====

<><> Gathering sources ><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
[angstrom.0.16.1] found in cache
[arp.4.1.0] found in cache
[asn1-combinators.0.3.2] found in cache
[astring.0.8.5] found in cache
[base64.3.5.2] found in cache
[bigstringaf.0.10.0] found in cache
[bin.0.0.4] found in cache
[bos.0.2.1] found in cache
[bstr.0.0.4] found in cache
[bytesrw.0.3.0] found in cache
[ca-certs.1.0.1] found in cache
[cmdliner.2.1.0] found in cache
[cppo.1.8.0] found in cache
[csexp.1.5.2] found in cache
[cstruct.6.2.0] found in cache
[cstruct-lwt.6.2.0] found in cache
[digestif.1.3.0] found in cache
[dns.10.2.3] found in cache
[dns-client.10.2.3] found in cache
[dns-client-miou-unix.10.2.3] found in cache
[domain-name.0.5.0] found in cache
[dune.3.21.1] found in cache
[dune-configurator.3.21.1] found in cache
[duration.0.2.1] found in cache
[eqaf.0.10] found in cache
[ethernet.3.2.0] found in cache
[faraday.0.8.2] found in cache
[fmt.0.11.0] found in cache
[fpath.0.7.3] found in cache
[gmap.0.3.0] found in cache
[h1.1.1.0] found in cache
[h2.0.13.0] found in cache
[happy-eyeballs.2.0.1] found in cache
[happy-eyeballs-miou-unix.2.0.1] found in cache
[hpack.0.13.0] found in cache
[httpcats.0.2.0] found in cache
[httpun-types.0.2.0] found in cache
[hxd.0.4.0] found in cache
[ipaddr.5.6.2] found in cache
[ipaddr-cstruct.5.6.2] found in cache
[jsont.0.2.0] found in cache
[kdf.1.0.0] found in cache
[logs.0.10.0] found in cache
[lru.0.3.1] found in cache
[lwt.6.1.0] found in cache
[lwt-dllist.1.1.0] found in cache
[macaddr.5.6.2] found in cache
[macaddr-cstruct.5.6.2] found in cache
[metrics.0.5.0] found in cache
[mhttp.0.0.1] found in cache
[miou.0.5.4] found in cache
[mirage-crypto.2.0.3] found in cache
[mirage-crypto-ec.2.0.3] found in cache
[mirage-crypto-pk.2.0.3] found in cache
[mirage-crypto-rng.2.0.3] found in cache
[mirage-flow.5.0.0] found in cache
[mirage-mtime.5.2.0] found in cache
[mirage-net.4.0.0] found in cache
[mirage-sleep.4.1.0] found in cache
[mkernel.0.0.1] found in cache
[mnet.0.0.1] found in cache
[mnet-tls.0.0.1] found in cache
[mtime.2.1.0] found in cache
[ocaml-solo5.1.2.0] found in cache
[ocaml-src.5.4.0] found in cache
[ocaml-syntax-shims.1.0.0] found in cache
[ocamlbuild.0.16.1] found in cache
[ocamlfind.1.9.8] found in cache
[ocplib-endian.1.2] found in cache
[ohex.0.2.0] found in cache
[opatch.3.1.0] found in cache
[patch.3.1.0] found in cache
[psq.0.2.1] found in cache
[ptime.1.2.0] found in cache
[randomconv.0.2.0] found in cache
[rresult.0.7.0] found in cache
[slice.0.0.4] found in cache
[solo5.0.10.0] found in cache
[tcpip.9.0.1] found in cache
[tls.2.0.3] found in cache
[tls-miou-unix.2.0.3] found in cache
[topkg.1.1.1] found in cache
[utcp.0.0.2] found in cache
[x509.1.0.6] found in cache
[zarith.1.14] found in cache

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> installed seq.base
-> installed conf-gmp.5
-> installed conf-pkg-config.4
-> installed ocaml-src.5.4.0
-> installed conf-gmp-powm-sec.4
-> installed conf-libseccomp.1
-> installed cmdliner.2.1.0
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed ocamlbuild.0.16.1
-> installed zarith.1.14
-> installed topkg.1.1.1
-> installed rresult.0.7.0
-> installed mtime.2.1.0
-> installed solo5.0.10.0
-> installed astring.0.8.5
-> installed bytesrw.0.3.0
-> installed fmt.0.11.0
-> installed ptime.1.2.0
-> installed fpath.0.7.3
-> installed jsont.0.2.0
-> installed dune.3.21.1
-> installed duration.0.2.1
-> installed base64.3.5.2
-> installed asn1-combinators.0.3.2
-> installed bstr.0.0.4
-> installed csexp.1.5.2
-> installed cppo.1.8.0
-> installed cstruct.6.2.0
-> installed domain-name.0.5.0
-> installed eqaf.0.10
-> installed gmap.0.3.0
-> installed lwt-dllist.1.1.0
-> installed macaddr.5.6.2
-> installed metrics.0.5.0
-> installed mirage-mtime.5.2.0
-> installed ocaml-syntax-shims.1.0.0
-> installed ohex.0.2.0
-> installed patch.3.1.0
-> installed psq.0.2.1
-> installed randomconv.0.2.0
-> installed slice.0.0.4
-> installed ocplib-endian.1.2
-> installed digestif.1.3.0
-> installed ipaddr.5.6.2
-> installed macaddr-cstruct.5.6.2
-> installed opatch.3.1.0
-> installed lru.0.3.1
-> installed bin.0.0.4
-> installed ipaddr-cstruct.5.6.2
-> installed dune-configurator.3.21.1
-> installed bigstringaf.0.10.0
-> installed faraday.0.8.2
-> installed miou.0.5.4
-> installed angstrom.0.16.1
-> installed mirage-crypto.2.0.3
-> installed httpun-types.0.2.0
-> installed lwt.6.1.0
-> installed hpack.0.13.0
-> installed kdf.1.0.0
-> installed h1.1.1.0
-> installed cstruct-lwt.6.2.0
-> installed mirage-flow.5.0.0
-> installed hxd.0.4.0
-> installed logs.0.10.0
-> installed mirage-net.4.0.0
-> installed mirage-sleep.4.1.0
-> installed h2.0.13.0
-> installed happy-eyeballs.2.0.1
-> installed mirage-crypto-rng.2.0.3
-> installed ethernet.3.2.0
-> installed happy-eyeballs-miou-unix.2.0.1
-> installed dns.10.2.3
-> installed mirage-crypto-pk.2.0.3
-> installed arp.4.1.0
-> installed bos.0.2.1
-> installed dns-client.10.2.3
-> installed tcpip.9.0.1
-> installed mirage-crypto-ec.2.0.3
-> installed utcp.0.0.2
-> installed x509.1.0.6
-> installed ca-certs.1.0.1
-> installed tls.2.0.3
-> installed tls-miou-unix.2.0.3
-> installed dns-client-miou-unix.10.2.3
-> installed httpcats.0.2.0
-> installed ocaml-solo5.1.2.0
-> installed mkernel.0.0.1
-> installed mnet.0.0.1
-> installed mnet-tls.0.0.1
-> installed mhttp.0.0.1
Done.
# Run eval $(opam env) to update the current shell environment
2026-02-20 10:25.37 ---> saved as "8b03afb3f894cf74c43219066c6d7a934386474f5f635d164c29ab0ad3a5a15d"

/home/opam: (run (network host)
                 (shell "(opam depext --with-test mhttp.0.0.1 && opam reinstall --with-test mhttp.0.0.1) || true"))
# Detecting depexts using vars: arch=x86_64, os=linux, os-distribution=debian, os-family=debian
[ERROR] No solution for mhttp.0.0.1: The following dependencies couldn't be met:
          - mhttp -> mnet -> utcp -> tcpip >= 9.0.0 -> pcap-format -> ppx_cstruct -> ppx_tools_versioned >= 5.4.0 -> ocaml-migrate-parsetree >= 1.7.0
              conflict with the base packages of this switch
          - mhttp -> mnet -> utcp -> tcpip >= 9.0.0 -> pcap-format -> ppx_cstruct -> ocaml-migrate-parsetree != 2.0.0
              conflict with the base packages of this switch
          - mhttp -> mnet -> utcp -> tcpip >= 9.0.0 -> pcap-format -> ppx_cstruct -> cstruct-sexp = 6.0.0
              no matching version


Command failed: opam list --readonly --with-test --external '--resolve=mhttp.0.0.1' --color=never returned 20
2026-02-20 10:25.44 ---> saved as "02483c929cd1f4470b58bf19372fc7b02e425305ad61e5fb715c98805cecd6bd"

/home/opam: (run (shell  "opam depext --with-test mhttp.0.0.1 && opam reinstall --with-test --verbose mhttp.0.0.1;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-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\" != 'mhttp.0.0.1' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
# Detecting depexts using vars: arch=x86_64, os=linux, os-distribution=debian, os-family=debian
[ERROR] No solution for mhttp.0.0.1: The following dependencies couldn't be met:
          - mhttp -> mnet -> utcp -> tcpip >= 9.0.0 -> pcap-format -> ppx_cstruct -> ppx_tools_versioned >= 5.4.0 -> ocaml-migrate-parsetree >= 1.7.0
              conflict with the base packages of this switch
          - mhttp -> mnet -> utcp -> tcpip >= 9.0.0 -> pcap-format -> ppx_cstruct -> ocaml-migrate-parsetree != 2.0.0
              conflict with the base packages of this switch
          - mhttp -> mnet -> utcp -> tcpip >= 9.0.0 -> pcap-format -> ppx_cstruct -> cstruct-sexp = 6.0.0
              no matching version


Command failed: opam list --readonly --with-test --external '--resolve=mhttp.0.0.1' --color=never returned 20
"/usr/bin/env" "bash" "-c" "opam depext --with-test mhttp.0.0.1 && opam reinstall --with-test --verbose mhttp.0.0.1;
        res=$?;
        test "$res" != 31 && exit "$res";
        export OPAMCLI=2.0;
        build_dir=$(opam var prefix)/.opam-switch/build;
        failed=$(ls "$build_dir");
        partial_fails="";
        for pkg in $failed; do
          if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then
            echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.";
          fi;
          test "$pkg" != 'mhttp.0.0.1' && partial_fails="$partial_fails $pkg";
        done;
        test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}";
        exit 1" failed with exit status 20
2026-02-20 10:26.17: Job failed: Failed: Build failed
2026-02-20 10:26.17: Log analysis:
2026-02-20 10:26.17: >>> 
[ERROR] No solution for mhttp.0.0.1: The following dependencies couldn't be met:
 (score = 100)
2026-02-20 10:26.17: >>> 
[ERROR] No solution for mhttp.0.0.1: The following dependencies couldn't be met:
 (score = 100)
2026-02-20 10:26.17: [SKIP] Package not available