Build:
  1. 0
2026-02-25 13:49.09: New job: test cohttp-async.6.1.1 with compiler-cloning.disabled, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29462/head (e1784a2a7abeba53f6eedf43529b2bb4c2a58a8f)
                              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/29462/head" && git reset --hard e1784a2a
git fetch origin master
git merge --no-edit 58311292be3bc343cc7f3b3926dfaf0015eb5afd
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-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 compiler-cloning.disabled disabled
RUN opam reinstall compiler-cloning.disabled; \
    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" != 'compiler-cloning.disabled' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall cohttp-async.6.1.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" != 'cohttp-async.6.1.1' && 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 cohttp-async.6.1.1) || true
RUN opam reinstall --with-test --verbose cohttp-async.6.1.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" != 'cohttp-async.6.1.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-25 13:49.09: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c-compiler-cloning.disabled-cohttp-async.6.1.1-e1784a2a7abeba53f6eedf43529b2bb4c2a58a8f"
2026-02-25 13:49.09: 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-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 compiler-cloning.disabled disabled"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall compiler-cloning.disabled;\
             \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\" != 'compiler-cloning.disabled' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall cohttp-async.6.1.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\" != 'cohttp-async.6.1.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 reinstall --with-test cohttp-async.6.1.1) || true"))
 (run (shell  "opam reinstall --with-test --verbose cohttp-async.6.1.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\" != 'cohttp-async.6.1.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-25 13:49.09: Waiting for resource in pool OCluster
2026-02-25 15:51.06: Waiting for worker…
2026-02-25 15:54.38: Got resource from pool OCluster
Building on clete
All commits already cached
Updating files:  66% (12193/18323)
Updating files:  67% (12277/18323)
Updating files:  68% (12460/18323)
Updating files:  69% (12643/18323)
Updating files:  70% (12827/18323)
Updating files:  71% (13010/18323)
Updating files:  72% (13193/18323)
Updating files:  73% (13376/18323)
Updating files:  74% (13560/18323)
Updating files:  75% (13743/18323)
Updating files:  76% (13926/18323)
Updating files:  77% (14109/18323)
Updating files:  78% (14292/18323)
Updating files:  79% (14476/18323)
Updating files:  80% (14659/18323)
Updating files:  81% (14842/18323)
Updating files:  82% (15025/18323)
Updating files:  83% (15209/18323)
Updating files:  84% (15392/18323)
Updating files:  85% (15575/18323)
Updating files:  86% (15758/18323)
Updating files:  87% (15942/18323)
Updating files:  88% (16125/18323)
Updating files:  89% (16308/18323)
Updating files:  90% (16491/18323)
Updating files:  91% (16674/18323)
Updating files:  92% (16858/18323)
Updating files:  93% (17041/18323)
Updating files:  94% (17224/18323)
Updating files:  95% (17407/18323)
Updating files:  96% (17591/18323)
Updating files:  97% (17774/18323)
Updating files:  98% (17957/18323)
Updating files:  99% (18140/18323)
Updating files: 100% (18323/18323)
Updating files: 100% (18323/18323), done.
HEAD is now at 58311292be Merge pull request #29420 from psafont/release-qcow-0.13.0
Updating 58311292be..e1784a2a7a
Fast-forward
 .../compiler-cloning.disabled/opam                 |  28 +++++
 .../compiler-cloning/compiler-cloning.enabled/opam |  27 +++++
 .../ocaml-base-compiler.5.5.0~alpha1/opam          |  29 +++++
 .../ocaml-compiler.5.5.0~alpha1/opam               | 123 +++++++++++++++++++++
 packages/ocaml-compiler/ocaml-compiler.5.5/opam    |   1 +
 .../ocaml-variants.5.5.0~alpha1+options/opam       |  26 +++++
 packages/ocaml/ocaml.5.5.0/opam                    |   3 +-
 7 files changed, 235 insertions(+), 2 deletions(-)
 create mode 100644 packages/compiler-cloning/compiler-cloning.disabled/opam
 create mode 100644 packages/compiler-cloning/compiler-cloning.enabled/opam
 create mode 100644 packages/ocaml-base-compiler/ocaml-base-compiler.5.5.0~alpha1/opam
 create mode 100644 packages/ocaml-compiler/ocaml-compiler.5.5.0~alpha1/opam
 create mode 100644 packages/ocaml-variants/ocaml-variants.5.5.0~alpha1+options/opam

(from ocaml/opam:debian-13-ocaml-5.4@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c)
2026-02-25 15:54.42 ---> using "3c18c9e472a4f76bc128dc0a5a1e21158ba3dbd0d6773ace6ec33f0cfe6fac9b" from cache

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-02-25 15:54.42 ---> using "7a3442ad99cd957e3ce65df65cad40aee4354c6d524c7813b8b589bc410c187e" from cache

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

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

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

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-02-25 15:54.42 ---> using "4214446d06a5b764dff5167574d07a5b4441731262795df63d7a3c5f64e1a189" from cache

/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version         2.5.0
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=debian os-version=13
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 71
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       5.4
# invariant            ["ocaml-base-compiler" {>= "5.4.0"}]
# compiler-packages    ocaml-base-compiler.5.4.0, ocaml-compiler.5.4.0, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       5.4.0
2026-02-25 15:54.42 ---> using "8bf276ecf196c09ac4fb294f887dce47d9744c212aabbbad5d313f0a4179272a" 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-25 15:54.42 ---> using "c04e3f046c8eaf07d3d8f4b30debe47a6f7742bcdbfbfeb4d464149613cd35cd" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-02-25 15:54.43 ---> using "be3f9bc3a781b481fd3dbe120624f8a8d5dd63c28b4a38d322fb2519d603cfea" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-02-25 15:54.43 ---> using "64086af42127be953e37150d3a115ffd5253ef49c1e582502e9ea95aed7b3d82" from cache

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian trixie InRelease
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [112 kB]
- Fetched 203 kB in 0s (1841 kB/s)
- Reading package lists...
- 
2026-02-25 15:54.43 ---> using "56e3e477db3c0716b89839d936e6052c9eebca70bf332f12ae122b3cbd7ac319" from cache

/home/opam: (run (shell "opam pin add -k version -yn compiler-cloning.disabled disabled"))
compiler-cloning is now pinned to version disabled
2026-02-25 15:54.43 ---> using "14f86a91609a7d44e514575e3d9104cac620f5900992288a7797db3b8f483478" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall compiler-cloning.disabled;\
                        \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\" != 'compiler-cloning.disabled' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
compiler-cloning.disabled is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
  - install compiler-cloning disabled (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> installed compiler-cloning.disabled
Done.
# To update the current shell environment, run: eval $(opam env)
2026-02-25 15:54.43 ---> using "6855ccf7ad052c5a96be78d264bbbe1585d46f3c1e60325c32c06cc90d19b23d" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall cohttp-async.6.1.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\" != 'cohttp-async.6.1.1' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
cohttp-async.6.1.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 104 packages
  - install angstrom                    0.16.1    [required by uri]
  - install astring                     0.8.5     [required by conduit]
  - install async                       v0.17.0   [required by cohttp-async]
  - install async_kernel                v0.17.0   [required by cohttp-async]
  - install async_log                   v0.17.0   [required by async]
  - install async_rpc_kernel            v0.17.0   [required by async]
  - install async_unix                  v0.17.0   [required by cohttp-async]
  - install base                        v0.17.3   [required by cohttp-async]
  - install base64                      3.5.2     [required by cohttp]
  - install base_bigstring              v0.17.0   [required by core]
  - install base_quickcheck             v0.17.1   [required by core]
  - install bigstringaf                 0.10.0    [required by angstrom]
  - install bin_prot                    v0.17.0-1 [required by core]
  - install capitalization              v0.17.0   [required by ppx_string_conv]
  - install cohttp                      6.1.1     [required by cohttp-async]
  - install cohttp-async                6.1.1
  - install conduit                     8.0.0     [required by conduit-async]
  - install conduit-async               8.0.0     [required by cohttp-async]
  - install core                        v0.17.1   [required by async, conduit-async]
  - install core_kernel                 v0.17.0   [required by async]
  - install core_unix                   v0.17.1   [required by cohttp-async]
  - install csexp                       1.5.2     [required by dune-configurator]
  - install cstruct                     6.2.0     [required by async_unix]
  - install domain-name                 0.5.0     [required by ipaddr]
  - install dune                        3.21.1    [required by cohttp-async]
  - install dune-configurator           3.21.1    [required by base, bigstringaf]
  - install expect_test_helpers_core    v0.17.0   [required by core_unix]
  - install fieldslib                   v0.17.0   [required by core]
  - install fmt                         0.11.0    [required by cohttp-async]
  - install gel                         v0.17.0   [required by async_rpc_kernel]
  - install http                        6.1.1     [required by cohttp-async]
  - install int_repr                    v0.17.0   [required by core_kernel]
  - install ipaddr                      5.6.2     [required by cohttp-async]
  - install ipaddr-sexp                 5.6.2     [required by conduit-async]
  - install jane-street-headers         v0.17.0   [required by core]
  - install jst-config                  v0.17.0   [required by core]
  - install logs                        0.10.0    [required by cohttp-async]
  - install macaddr                     5.6.2     [required by ipaddr]
  - install magic-mime                  1.3.1     [required by cohttp-async]
  - install num                         1.6       [required by sexplib]
  - install ocaml-compiler-libs         v0.17.0   [required by ppxlib]
  - install ocaml-syntax-shims          1.0.0     [required by angstrom]
  - install ocaml_intrinsics_kernel     v0.17.1   [required by base]
  - install ocamlbuild                  0.16.1    [required by logs]
  - install ocamlfind                   1.9.8     [required by logs]
  - install parsexp                     v0.17.0   [required by sexplib]
  - install ppx_assert                  v0.17.0   [required by core]
  - install ppx_base                    v0.17.0   [required by core]
  - install ppx_bench                   v0.17.1   [required by ppx_jane]
  - install ppx_bin_prot                v0.17.1   [required by ppx_jane]
  - install ppx_cold                    v0.17.0   [required by ppx_base]
  - install ppx_compare                 v0.17.0   [required by ppx_diff]
  - install ppx_custom_printf           v0.17.0   [required by ppx_jane]
  - install ppx_derivers                1.2.1     [required by ppxlib]
  - install ppx_diff                    v0.17.1   [required by core]
  - install ppx_disable_unused_warnings v0.17.0   [required by ppx_jane]
  - install ppx_enumerate               v0.17.0   [required by ppx_diff]
  - install ppx_expect                  v0.17.3   [required by ppx_jane]
  - install ppx_fields_conv             v0.17.0   [required by ppx_jane]
  - install ppx_fixed_literal           v0.17.0   [required by ppx_jane]
  - install ppx_globalize               v0.17.2   [required by ppx_base]
  - install ppx_hash                    v0.17.0   [required by core]
  - install ppx_here                    v0.17.0   [required by conduit-async]
  - install ppx_ignore_instrumentation  v0.17.0   [required by ppx_jane]
  - install ppx_inline_test             v0.17.1   [required by core]
  - install ppx_jane                    v0.17.0   [required by async]
  - install ppx_let                     v0.17.1   [required by ppx_jane]
  - install ppx_log                     v0.17.0   [required by ppx_jane]
  - install ppx_module_timer            v0.17.0   [required by ppx_jane]
  - install ppx_optcomp                 v0.17.1   [required by core_kernel, core, async_unix]
  - install ppx_optional                v0.17.0   [required by ppx_jane]
  - install ppx_pipebang                v0.17.0   [required by ppx_jane]
  - install ppx_sexp_conv               v0.17.1   [required by cohttp-async]
  - install ppx_sexp_message            v0.17.0   [required by core]
  - install ppx_sexp_value              v0.17.0   [required by ppx_jane]
  - install ppx_stable                  v0.17.1   [required by ppx_jane]
  - install ppx_stable_witness          v0.17.0   [required by ppx_jane]
  - install ppx_string                  v0.17.0   [required by ppx_jane]
  - install ppx_string_conv             v0.17.0   [required by ppx_jane]
  - install ppx_tydi                    v0.17.1   [required by ppx_jane]
  - install ppx_typerep_conv            v0.17.1   [required by ppx_jane]
  - install ppx_variants_conv           v0.17.1   [required by ppx_jane]
  - install ppxlib                      0.37.0    [required by ppx_diff]
  - install ppxlib_jane                 v0.17.4   [required by ppx_diff]
  - install protocol_version_header     v0.17.0   [required by async_rpc_kernel]
  - install re                          1.14.0    [required by cohttp]
  - install sexp_pretty                 v0.17.0   [required by expect_test_helpers_core]
  - install sexplib                     v0.17.0   [required by core]
  - install sexplib0                    v0.17.0   [required by cohttp-async]
  - install spawn                       v0.17.0   [required by core_unix]
  - install splittable_random           v0.17.0   [required by core]
  - install stdio                       v0.17.0   [required by core]
  - install stdlib-shims                0.3.0     [required by ppxlib]
  - install stringext                   1.6.0     [required by cohttp]
  - install textutils                   v0.17.0   [required by async]
  - install time_now                    v0.17.0   [required by core]
  - install timezone                    v0.17.0   [required by async_log]
  - install topkg                       1.1.1     [required by logs]
  - install typerep                     v0.17.1   [required by core]
  - install uopt                        v0.17.0   [required by core_kernel]
  - install uri                         4.4.0     [required by cohttp-async]
  - install uri-sexp                    4.4.0     [required by cohttp-async]
  - install uutf                        1.0.4     [required by textutils]
  - install variantslib                 v0.17.0   [required by core]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved angstrom.0.16.1  (cached)
-> retrieved astring.0.8.5  (cached)
-> retrieved async.v0.17.0  (cached)
-> retrieved async_kernel.v0.17.0  (cached)
-> retrieved async_log.v0.17.0  (cached)
-> retrieved async_rpc_kernel.v0.17.0  (cached)
-> retrieved async_unix.v0.17.0  (cached)
-> retrieved base.v0.17.3  (cached)
-> retrieved base64.3.5.2  (cached)
-> retrieved base_bigstring.v0.17.0  (cached)
-> retrieved base_quickcheck.v0.17.1  (cached)
-> retrieved bigstringaf.0.10.0  (cached)
-> retrieved bin_prot.v0.17.0-1  (cached)
-> retrieved capitalization.v0.17.0  (cached)
-> retrieved cohttp.6.1.1, cohttp-async.6.1.1, http.6.1.1  (cached)
-> retrieved conduit.8.0.0, conduit-async.8.0.0  (cached)
-> retrieved core.v0.17.1  (cached)
-> retrieved core_kernel.v0.17.0  (cached)
-> retrieved core_unix.v0.17.1  (cached)
-> retrieved csexp.1.5.2  (cached)
-> retrieved cstruct.6.2.0  (cached)
-> retrieved domain-name.0.5.0  (cached)
-> retrieved dune.3.21.1, dune-configurator.3.21.1  (cached)
-> retrieved expect_test_helpers_core.v0.17.0  (cached)
-> retrieved fieldslib.v0.17.0  (cached)
-> retrieved fmt.0.11.0  (cached)
-> retrieved gel.v0.17.0  (cached)
-> retrieved int_repr.v0.17.0  (cached)
-> retrieved ipaddr.5.6.2, ipaddr-sexp.5.6.2, macaddr.5.6.2  (cached)
-> retrieved jane-street-headers.v0.17.0  (cached)
-> retrieved jst-config.v0.17.0  (cached)
-> retrieved logs.0.10.0  (cached)
-> retrieved magic-mime.1.3.1  (cached)
-> retrieved num.1.6  (cached)
-> retrieved ocaml-compiler-libs.v0.17.0  (cached)
-> retrieved ocaml-syntax-shims.1.0.0  (cached)
-> retrieved ocaml_intrinsics_kernel.v0.17.1  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved parsexp.v0.17.0  (cached)
-> retrieved ppx_assert.v0.17.0  (cached)
-> retrieved ppx_base.v0.17.0  (cached)
-> retrieved ppx_bench.v0.17.1  (cached)
-> retrieved ppx_bin_prot.v0.17.1  (cached)
-> retrieved ppx_cold.v0.17.0  (cached)
-> retrieved ppx_compare.v0.17.0  (cached)
-> retrieved ppx_custom_printf.v0.17.0  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppx_diff.v0.17.1  (cached)
-> retrieved ppx_disable_unused_warnings.v0.17.0  (cached)
-> retrieved ppx_enumerate.v0.17.0  (cached)
-> retrieved ppx_expect.v0.17.3  (cached)
-> retrieved ppx_fields_conv.v0.17.0  (cached)
-> retrieved ppx_fixed_literal.v0.17.0  (cached)
-> retrieved ppx_globalize.v0.17.2  (cached)
-> retrieved ppx_hash.v0.17.0  (cached)
-> retrieved ppx_here.v0.17.0  (cached)
-> retrieved ppx_ignore_instrumentation.v0.17.0  (cached)
-> retrieved ppx_inline_test.v0.17.1  (cached)
-> retrieved ppx_jane.v0.17.0  (cached)
-> retrieved ppx_let.v0.17.1  (cached)
-> retrieved ppx_log.v0.17.0  (cached)
-> retrieved ppx_module_timer.v0.17.0  (cached)
-> retrieved ppx_optcomp.v0.17.1  (cached)
-> retrieved ppx_optional.v0.17.0  (cached)
-> retrieved ppx_pipebang.v0.17.0  (cached)
-> retrieved ppx_sexp_conv.v0.17.1  (cached)
-> retrieved ppx_sexp_message.v0.17.0  (cached)
-> retrieved ppx_sexp_value.v0.17.0  (cached)
-> retrieved ppx_stable.v0.17.1  (cached)
-> retrieved ppx_stable_witness.v0.17.0  (cached)
-> retrieved ppx_string.v0.17.0  (cached)
-> retrieved ppx_string_conv.v0.17.0  (cached)
-> retrieved ppx_tydi.v0.17.1  (cached)
-> retrieved ppx_typerep_conv.v0.17.1  (cached)
-> retrieved ppx_variants_conv.v0.17.1  (cached)
-> retrieved ppxlib.0.37.0  (cached)
-> retrieved ppxlib_jane.v0.17.4  (cached)
-> retrieved protocol_version_header.v0.17.0  (cached)
-> retrieved re.1.14.0  (cached)
-> retrieved sexp_pretty.v0.17.0  (cached)
-> retrieved sexplib.v0.17.0  (cached)
-> retrieved sexplib0.v0.17.0  (cached)
-> retrieved spawn.v0.17.0  (cached)
-> retrieved splittable_random.v0.17.0  (cached)
-> retrieved stdio.v0.17.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved stringext.1.6.0  (cached)
-> retrieved textutils.v0.17.0  (cached)
-> retrieved time_now.v0.17.0  (cached)
-> retrieved timezone.v0.17.0  (cached)
-> retrieved topkg.1.1.1  (cached)
-> retrieved typerep.v0.17.1  (cached)
-> retrieved uopt.v0.17.0  (cached)
-> retrieved uri.4.4.0, uri-sexp.4.4.0  (cached)
-> retrieved uutf.1.0.4  (cached)
-> retrieved variantslib.v0.17.0  (cached)
-> installed num.1.6
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed astring.0.8.5
-> installed logs.0.10.0
-> installed dune.3.21.1
-> installed ppx_derivers.1.2.1
-> installed jane-street-headers.v0.17.0
-> installed csexp.1.5.2
-> installed base64.3.5.2
-> installed cstruct.6.2.0
-> installed domain-name.0.5.0
-> installed http.6.1.1
-> installed macaddr.5.6.2
-> installed magic-mime.1.3.1
-> installed ocaml-compiler-libs.v0.17.0
-> installed ocaml-syntax-shims.1.0.0
-> installed ocaml_intrinsics_kernel.v0.17.1
-> installed re.1.14.0
-> installed sexplib0.v0.17.0
-> installed spawn.v0.17.0
-> installed stdlib-shims.0.3.0
-> installed stringext.1.6.0
-> installed ipaddr.5.6.2
-> installed parsexp.v0.17.0
-> installed dune-configurator.3.21.1
-> installed sexplib.v0.17.0
-> installed bigstringaf.0.10.0
-> installed angstrom.0.16.1
-> installed uri.4.4.0
-> installed base.v0.17.3
-> installed fieldslib.v0.17.0
-> installed variantslib.v0.17.0
-> installed stdio.v0.17.0
-> installed typerep.v0.17.1
-> installed ppxlib.0.37.0
-> installed ppx_optcomp.v0.17.1
-> installed ppxlib_jane.v0.17.4
-> installed ppx_tydi.v0.17.1
-> installed ppx_cold.v0.17.0
-> installed ppx_here.v0.17.0
-> installed ppx_disable_unused_warnings.v0.17.0
-> installed ppx_variants_conv.v0.17.1
-> installed ppx_stable_witness.v0.17.0
-> installed ppx_typerep_conv.v0.17.1
-> installed ppx_fields_conv.v0.17.0
-> installed ppx_ignore_instrumentation.v0.17.0
-> installed ppx_pipebang.v0.17.0
-> installed ppx_stable.v0.17.1
-> installed ppx_fixed_literal.v0.17.0
-> installed ppx_enumerate.v0.17.0
-> installed ppx_compare.v0.17.0
-> installed ppx_globalize.v0.17.2
-> installed ppx_optional.v0.17.0
-> installed ppx_sexp_conv.v0.17.1
-> installed ppx_let.v0.17.1
-> installed ipaddr-sexp.5.6.2
-> installed uri-sexp.4.4.0
-> installed ppx_hash.v0.17.0
-> installed ppx_sexp_value.v0.17.0
-> installed ppx_sexp_message.v0.17.0
-> installed ppx_assert.v0.17.0
-> installed ppx_custom_printf.v0.17.0
-> installed conduit.8.0.0
-> installed ppx_base.v0.17.0
-> installed cohttp.6.1.1
-> installed jst-config.v0.17.0
-> installed capitalization.v0.17.0
-> installed sexp_pretty.v0.17.0
-> installed bin_prot.v0.17.0-1
-> installed ppx_string.v0.17.0
-> installed time_now.v0.17.0
-> installed ppx_bin_prot.v0.17.1
-> installed ppx_string_conv.v0.17.0
-> installed ppx_inline_test.v0.17.1
-> installed ppx_module_timer.v0.17.0
-> installed ppx_bench.v0.17.1
-> installed ppx_expect.v0.17.3
-> installed splittable_random.v0.17.0
-> installed base_quickcheck.v0.17.1
-> installed ppx_log.v0.17.0
-> installed ppx_jane.v0.17.0
-> installed uopt.v0.17.0
-> installed gel.v0.17.0
-> installed int_repr.v0.17.0
-> installed base_bigstring.v0.17.0
-> installed ppx_diff.v0.17.1
-> installed core.v0.17.1
-> installed protocol_version_header.v0.17.0
-> installed timezone.v0.17.0
-> installed expect_test_helpers_core.v0.17.0
-> installed core_kernel.v0.17.0
-> installed async_kernel.v0.17.0
-> installed core_unix.v0.17.1
-> installed textutils.v0.17.0
-> installed async_rpc_kernel.v0.17.0
-> installed async_unix.v0.17.0
-> installed async_log.v0.17.0
-> installed async.v0.17.0
-> installed conduit-async.8.0.0
-> installed cohttp-async.6.1.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-02-25 16:03.39 ---> saved as "4418489299d60dcf86b9f356c816691129ec12e33b271171789bcf0fe15f9207"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test cohttp-async.6.1.1) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile cohttp-async 6.1.1
=== install 4 packages
  - install   digestif     1.3.0 [required by cohttp-async]
  - install   eqaf         0.10  [required by digestif]
  - install   ounit2       2.2.7 [required by cohttp-async]
  - install   seq          base  [required by ounit2]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved cohttp-async.6.1.1  (https://opam.ocaml.org/cache)
-> retrieved digestif.1.3.0  (https://opam.ocaml.org/cache)
-> retrieved eqaf.0.10  (https://opam.ocaml.org/cache)
-> retrieved ounit2.2.2.7  (https://opam.ocaml.org/cache)
-> retrieved seq.base  (2 extra sources)
-> retrieved seq.base  (2 extra sources)
-> installed seq.base
-> removed   cohttp-async.6.1.1
-> installed eqaf.0.10
-> installed ounit2.2.2.7
-> installed digestif.1.3.0
-> installed cohttp-async.6.1.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-02-25 16:04.05 ---> saved as "603bd19d4d30a60fa15b0cc77c1cd3937633ae5dfe6e2af9c30e8e49d4e9cc9b"

/home/opam: (run (shell  "opam reinstall --with-test --verbose cohttp-async.6.1.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\" != 'cohttp-async.6.1.1' && 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 cohttp-async 6.1.1

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [cohttp-async.6.1.1: extract]
-> retrieved cohttp-async.6.1.1  (cached)
Processing  2/4: [cohttp-async: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "cohttp-async" "-j" "71" "@install" "@cohttp-async/runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/cohttp-async.6.1.1)
- (cd _build/default/cohttp-async/test && ./test_async_integration.exe)
- ......
- Ran: 6 tests in: 0.07 seconds.
- OK
- test_async_integration.exe: [INFO] Test Cohttp Server Test running on http://0.0.0.0:10080
- test_async_integration.exe: [DEBUG] Running empty chunk test
- test_async_integration.exe: [DEBUG] Running large response
- test_async_integration.exe: [DEBUG] Running large request
- test_async_integration.exe: [DEBUG] Running pipelined chunk test
- test_async_integration.exe: [DEBUG] Running large chunked response
- test_async_integration.exe: [DEBUG] Running expert response
-> compiled  cohttp-async.6.1.1
-> removed   cohttp-async.6.1.1
-> installed cohttp-async.6.1.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-02-25 16:04.25 ---> saved as "f0842b85c6fc07f338b05ea6eac2e68506fb4a279da3e2fff30218b64c5a1f67"
Job succeeded
2026-02-25 16:05.00: Job succeeded