(not at the head of any monitored branch or PR)
2026-03-10 08:59.44: New job: test lwt_eio.0.5.1, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29530/head (3af7d0a25910b3d20c909e559efb484eb6a78128)
                              on debian-13-ocaml-5.2/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/29530/head" && git reset --hard 3af7d0a2
git fetch origin master
git merge --no-edit 3c70647a78a7fd22066fca4f17f7ca4514500663
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.2@sha256:27f9f13fc53393fac340f59095bc754f32b077f5ac2eda512f38c28f84185cf1
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 lwt_eio.0.5.1 0.5.1
RUN opam reinstall lwt_eio.0.5.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" != 'lwt_eio.0.5.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 lwt_eio.0.5.1) || true
RUN opam reinstall --with-test --verbose lwt_eio.0.5.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" != 'lwt_eio.0.5.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-03-10 08:59.44: Using cache hint "ocaml/opam:debian-13-ocaml-5.2@sha256:27f9f13fc53393fac340f59095bc754f32b077f5ac2eda512f38c28f84185cf1-lwt_eio.0.5.1-3af7d0a25910b3d20c909e559efb484eb6a78128"
2026-03-10 08:59.44: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.2@sha256:27f9f13fc53393fac340f59095bc754f32b077f5ac2eda512f38c28f84185cf1)
 (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 lwt_eio.0.5.1 0.5.1"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall lwt_eio.0.5.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\" != 'lwt_eio.0.5.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 lwt_eio.0.5.1) || true"))
 (run (shell  "opam reinstall --with-test --verbose lwt_eio.0.5.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\" != 'lwt_eio.0.5.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-03-10 08:59.44: Waiting for resource in pool OCluster
2026-03-10 09:14.03: Waiting for worker…
2026-03-10 09:15.40: Got resource from pool OCluster
Building on toxis.caelum.ci.dev
All commits already cached
HEAD is now at 3c70647a78 Merge pull request #29507 from NathanReb/release-ppxlib-0-38-0-5-5-preview
Updating 3c70647a78..3af7d0a259
Fast-forward
 packages/bimage-lwt/bimage-lwt.0.3.0/opam    | 6 +++++-
 packages/bimage-lwt/bimage-lwt.0.3.1/opam    | 6 +++++-
 packages/bimage-lwt/bimage-lwt.0.4.0/opam    | 6 +++++-
 packages/caqti-lwt/caqti-lwt.0.11.0/opam     | 4 +++-
 packages/caqti-lwt/caqti-lwt.1.0.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.1.2.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.1.3.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.1.6.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.1.7.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.1.8.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.1.9.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.2.0.1/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.2.1.1/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.2.2.4/opam      | 6 +++++-
 packages/fuseau-lwt/fuseau-lwt.0.1/opam      | 6 +++++-
 packages/lambda-term/lambda-term.1.13/opam   | 6 +++++-
 packages/lambda-term/lambda-term.2.0.1/opam  | 6 +++++-
 packages/lambda-term/lambda-term.2.0.2/opam  | 6 +++++-
 packages/lambda-term/lambda-term.2.0.3/opam  | 6 +++++-
 packages/lambda-term/lambda-term.2.0/opam    | 6 +++++-
 packages/lambda-term/lambda-term.3.0.0/opam  | 6 +++++-
 packages/lambda-term/lambda-term.3.0.1/opam  | 6 +++++-
 packages/lambda-term/lambda-term.3.1.0/opam  | 6 +++++-
 packages/lambda-term/lambda-term.3.2.0/opam  | 6 +++++-
 packages/lambda-term/lambda-term.3.3.0/opam  | 6 +++++-
 packages/lambda-term/lambda-term.3.3.1/opam  | 6 +++++-
 packages/lambda-term/lambda-term.3.3.2/opam  | 6 +++++-
 packages/lwt_domain/lwt_domain.0.1.0/opam    | 6 +++++-
 packages/lwt_domain/lwt_domain.0.2.0/opam    | 6 +++++-
 packages/lwt_domain/lwt_domain.0.3.0/opam    | 6 +++++-
 packages/lwt_eio/lwt_eio.0.1/opam            | 6 +++++-
 packages/lwt_eio/lwt_eio.0.2/opam            | 6 +++++-
 packages/lwt_eio/lwt_eio.0.3/opam            | 6 +++++-
 packages/lwt_eio/lwt_eio.0.4/opam            | 6 +++++-
 packages/lwt_eio/lwt_eio.0.5.1/opam          | 6 +++++-
 packages/lwt_eio/lwt_eio.0.5/opam            | 6 +++++-
 packages/lwt_glib/lwt_glib.1.0.1/opam        | 6 +++++-
 packages/lwt_glib/lwt_glib.1.1.0/opam        | 6 +++++-
 packages/lwt_glib/lwt_glib.1.1.1/opam        | 6 +++++-
 packages/lwt_log/lwt_log.1.1.0/opam          | 6 +++++-
 packages/lwt_log/lwt_log.1.1.1/opam          | 6 +++++-
 packages/lwt_log/lwt_log.1.1.2/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.0.0/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.0.1/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.1.0/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.2.0/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.2.1/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.2.2/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.2.3/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.2.4/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.2.0.0/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.2.0.1/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.2.0.2/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.2.0.3/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.2.1.0/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.5.8.0/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.5.8.1/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.5.9.1/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.5.9.2/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.5.9.3/opam          | 6 +++++-
 packages/moonpool-lwt/moonpool-lwt.0.10/opam | 6 +++++-
 packages/moonpool-lwt/moonpool-lwt.0.6/opam  | 6 +++++-
 packages/moonpool-lwt/moonpool-lwt.0.7/opam  | 6 +++++-
 packages/moonpool-lwt/moonpool-lwt.0.8/opam  | 6 +++++-
 packages/moonpool-lwt/moonpool-lwt.0.9/opam  | 6 +++++-
 packages/mwt/mwt.0.1.0/opam                  | 6 +++++-
 packages/nocrypto/nocrypto.0.5.4-1/opam      | 6 +++++-
 packages/nocrypto/nocrypto.0.5.4-2/opam      | 6 +++++-
 packages/ocluster/ocluster.0.1/opam          | 4 +++-
 packages/ocluster/ocluster.0.2.1/opam        | 6 +++++-
 packages/ocluster/ocluster.0.2/opam          | 4 +++-
 packages/ocluster/ocluster.0.3.0/opam        | 6 +++++-
 packages/picos/picos.0.3.0/opam              | 6 +++++-
 packages/picos/picos.0.4.0/opam              | 6 +++++-
 packages/picos_lwt/picos_lwt.0.5.0/opam      | 6 +++++-
 packages/picos_lwt/picos_lwt.0.6.0/opam      | 6 +++++-
 packages/tezt/tezt.2.0.0/opam                | 6 +++++-
 packages/tezt/tezt.3.0.0/opam                | 4 +++-
 packages/tezt/tezt.3.1.0/opam                | 4 +++-
 packages/tezt/tezt.3.1.1/opam                | 4 +++-
 packages/tezt/tezt.4.0.0/opam                | 4 +++-
 packages/tezt/tezt.4.1.0/opam                | 4 +++-
 packages/tezt/tezt.4.2.0/opam                | 4 +++-
 packages/tezt/tezt.4.3.0/opam                | 4 +++-
 84 files changed, 400 insertions(+), 84 deletions(-)

(from ocaml/opam:debian-13-ocaml-5.2@sha256:27f9f13fc53393fac340f59095bc754f32b077f5ac2eda512f38c28f84185cf1)
Unable to find image 'ocaml/opam:debian-13-ocaml-5.2@sha256:27f9f13fc53393fac340f59095bc754f32b077f5ac2eda512f38c28f84185cf1' locally
docker.io/ocaml/opam@sha256:27f9f13fc53393fac340f59095bc754f32b077f5ac2eda512f38c28f84185cf1: Pulling from ocaml/opam
866771c43bf5: Already exists
1e49bea09367: Already exists
e793768537e6: Already exists
ed323d3d481a: Already exists
7df34a5cd5f1: Already exists
fd712d3eb935: Already exists
4b9fb8c99118: Already exists
9d9a01948b94: Already exists
0f1514f90b32: Already exists
e1ec5a753447: Already exists
03cc323e2f71: Already exists
c09c08ea9749: Already exists
b36b619f8e6b: Already exists
195344ca5274: Already exists
228ee78582a6: Already exists
504bde1c25b3: Already exists
9d8b1356c89f: Already exists
9d8b1356c89f: Already exists
568fb6dda155: Already exists
c499c9198aea: Already exists
048e5e358118: Already exists
871ca48eb45d: Already exists
4f4fb700ef54: Already exists
a5a2568b9df9: Already exists
068cf3106ac8: Already exists
559f54ec9b29: Already exists
798ffd96fde5: Already exists
e9a891bf80d7: Already exists
d720cfe12674: Already exists
c81c932f4a91: Already exists
79f24fa3bb11: Already exists
8c1debcd8c20: Already exists
1bb2cfea7250: Already exists
2b3d3ca75e4c: Already exists
557cacaf263c: Already exists
d10483022eef: Already exists
7b62a90d8223: Already exists
28ce8ea66e72: Already exists
d975909ea717: Already exists
5c215c69c247: Already exists
e7c082452a54: Already exists
27454b3e44fc: Already exists
cf864090fffc: Already exists
98d73952e572: Already exists
c6d44b49685c: Pulling fs layer
35900062a974: Pulling fs layer
715391ec4183: Pulling fs layer
cc777f35b81f: Pulling fs layer
35900062a974: Verifying Checksum
35900062a974: Download complete
715391ec4183: Verifying Checksum
cc777f35b81f: Download complete
c6d44b49685c: Verifying Checksum
c6d44b49685c: Download complete
c6d44b49685c: Pull complete
35900062a974: Pull complete
715391ec4183: Pull complete
cc777f35b81f: Pull complete
Digest: sha256:27f9f13fc53393fac340f59095bc754f32b077f5ac2eda512f38c28f84185cf1
Status: Downloaded newer image for ocaml/opam@sha256:27f9f13fc53393fac340f59095bc754f32b077f5ac2eda512f38c28f84185cf1
2026-03-10 09:15.42 ---> using "9b20f3b3460b5364c4694eca09e11691cd4f4b015a339d3aa7da33a7a51cdbf3" 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-03-10 09:15.42 ---> using "ad5ea356cf8bf0b52be1fae59acf3ec52b45499fc5069067f93247cae2ba4c77" 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-03-10 09:15.42 ---> using "1525b7188e45a49d52687de7a2c213f76cbdee56461e802a0b5b2db8ec2de162" 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.2
# invariant            ["ocaml-base-compiler" {= "5.2.1"}]
# compiler-packages    ocaml-base-compiler.5.2.1, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/5.2/lib/ocaml/stublibs:/home/opam/.opam/5.2/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       5.2.1
2026-03-10 09:15.42 ---> using "d12c856c6c3d133dd167a8ac8f9beed86255cc8fe5e2c568b92d3d95dd0887ed" 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-03-10 09:15.42 ---> using "e0d2b6a0e1128d9e006cbeaf9fa84712642f3c69de94917ef3a2e3eac0a5d53d" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-03-10 09:15.43 ---> using "bcaa57f54ac9717922376e1b79f91291aaa461dc00333f19795ac2869fd6284d" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-10 09:15.43 ---> using "e5fbb7255c8b194834785d795071346f421e6f548f8a4449911d1ea262e0e75d" 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 [108 kB]
- Fetched 199 kB in 0s (1520 kB/s)
- Reading package lists...
- 
2026-03-10 09:15.43 ---> using "e1900a17e1e1f8e443eb14063a1f16d9e66cd10f958a404ccdd31636f43679eb" from cache

/home/opam: (run (shell "opam pin add -k version -yn lwt_eio.0.5.1 0.5.1"))
lwt_eio is now pinned to version 0.5.1
2026-03-10 09:15.43 ---> using "2bed20f9809a6fe691cef5795a495246cc4925635922823ef44cf9b492c67837" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall lwt_eio.0.5.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\" != 'lwt_eio.0.5.1' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
lwt_eio.0.5.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 23 packages
  - install base-bytes         base           [required by ocplib-endian]
  - install bigstringaf        0.10.0         [required by eio]
  - install cppo               1.8.0          [required by lwt]
  - install csexp              1.5.2          [required by dune-configurator]
  - install cstruct            6.2.0          [required by eio]
  - install domain-local-await 1.0.1          [required by eio]
  - install dune               3.21.1         [required by lwt_eio]
  - install dune-configurator  3.21.1         [required by lwt]
  - install eio                1.3            [required by lwt_eio]
  - install fmt                0.11.0         [required by eio]
  - install hmap               0.8.1          [required by eio]
  - install lwt                6.0.0          [required by lwt_eio]
  - install lwt-dllist         1.1.0          [required by eio]
  - install lwt_eio            0.5.1 (pinned)
  - install mtime              2.1.0          [required by eio]
  - install ocamlbuild         0.16.1         [required by hmap, mtime]
  - install ocamlfind          1.9.8          [required by hmap, mtime]
  - install ocplib-endian      1.2            [required by lwt]
  - install optint             0.3.0          [required by eio]
  - install psq                0.2.1          [required by eio]
  - install seq                base           [required by psq]
  - install thread-table       1.0.0          [required by domain-local-await]
  - install topkg              1.1.1          [required by hmap, mtime]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved bigstringaf.0.10.0  (cached)
-> retrieved cppo.1.8.0  (cached)
-> retrieved csexp.1.5.2  (cached)
-> retrieved cstruct.6.2.0  (cached)
-> retrieved domain-local-await.1.0.1  (cached)
-> retrieved dune.3.21.1, dune-configurator.3.21.1  (cached)
-> retrieved eio.1.3  (cached)
-> retrieved fmt.0.11.0  (cached)
-> retrieved hmap.0.8.1  (cached)
-> retrieved lwt.6.0.0  (cached)
-> retrieved lwt-dllist.1.1.0  (cached)
-> retrieved lwt_eio.0.5.1  (cached)
-> retrieved mtime.2.1.0  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ocplib-endian.1.2  (cached)
-> retrieved optint.0.3.0  (cached)
-> retrieved psq.0.2.1  (cached)
-> retrieved seq.base  (cached)
-> installed seq.base
-> retrieved thread-table.1.0.0  (cached)
-> retrieved topkg.1.1.1  (cached)
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed hmap.0.8.1
-> installed fmt.0.11.0
-> installed mtime.2.1.0
-> installed dune.3.21.1
-> installed lwt-dllist.1.1.0
-> installed csexp.1.5.2
-> installed cppo.1.8.0
-> installed cstruct.6.2.0
-> installed optint.0.3.0
-> installed psq.0.2.1
-> installed thread-table.1.0.0
-> installed ocplib-endian.1.2
-> installed domain-local-await.1.0.1
-> installed dune-configurator.3.21.1
-> installed bigstringaf.0.10.0
-> installed eio.1.3
-> installed lwt.6.0.0
-> installed lwt_eio.0.5.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-10 09:16.29 ---> saved as "440a26c67201eb5be30ff879afe3293901257415da38160b767837193e0f43ba"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test lwt_eio.0.5.1) || true"))
The following actions will be performed:
=== recompile 4 packages
  - recompile cstruct       6.2.0          [uses fmt]
  - recompile eio           1.3            [uses fmt]
  - recompile fmt           0.11.0         [uses cmdliner]
  - recompile lwt_eio       0.5.1 (pinned)
=== install 13 packages
  - install   astring       0.8.5          [required by mdx]
  - install   camlp-streams 5.0.1          [required by mdx]
  - install   cmdliner      2.1.0          [required by mdx]
  - install   eio_linux     1.3            [required by eio_main]
  - install   eio_main      1.3            [required by lwt_eio]
  - install   eio_posix     1.3            [required by eio_main]
  - install   iomux         0.4            [required by eio_posix]
  - install   logs          0.10.0         [required by mdx]
  - install   mdx           2.5.1          [required by lwt_eio]
  - install   ocaml-version 4.0.3          [required by mdx]
  - install   re            1.14.0         [required by mdx]
  - install   result        1.5            [required by mdx]
  - install   uring         2.7.0          [required by eio_linux]

<><> 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 cstruct.6.2.0  (https://opam.ocaml.org/cache)
-> retrieved eio.1.3, eio_linux.1.3, eio_main.1.3, eio_posix.1.3  (https://opam.ocaml.org/cache)
-> installed camlp-streams.5.0.1
-> retrieved fmt.0.11.0  (https://opam.ocaml.org/cache)
-> retrieved iomux.0.4  (https://opam.ocaml.org/cache)
-> 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)
-> retrieved re.1.14.0  (https://opam.ocaml.org/cache)
-> retrieved result.1.5  (https://opam.ocaml.org/cache)
-> installed ocaml-version.4.0.3
-> installed iomux.0.4
-> retrieved uring.2.7.0  (https://opam.ocaml.org/cache)
-> installed result.1.5
-> installed astring.0.8.5
-> installed re.1.14.0
-> removed   lwt_eio.0.5.1
-> removed   eio.1.3
-> removed   cstruct.6.2.0
-> removed   fmt.0.11.0
-> installed cmdliner.2.1.0
-> installed fmt.0.11.0
-> installed cstruct.6.2.0
-> installed logs.0.10.0
-> installed eio.1.3
-> installed uring.2.7.0
-> installed eio_posix.1.3
-> installed mdx.2.5.1
-> installed eio_linux.1.3
-> installed eio_main.1.3
[ERROR] The compilation of lwt_eio.0.5.1 failed at "dune build -p lwt_eio -j 71 @install @runtest".

#=== ERROR while compiling lwt_eio.0.5.1 ======================================#
# context              2.5.0 | linux/x86_64 | ocaml-base-compiler.5.2.1 | pinned(https://github.com/ocaml-multicore/lwt_eio/releases/download/v0.5.1/lwt_eio-0.5.1.tbz)
# path                 ~/.opam/5.2/.opam-switch/build/lwt_eio.0.5.1
# command              ~/.opam/opam-init/hooks/sandbox.sh build dune build -p lwt_eio -j 71 @install @runtest
# exit-code            1
# env-file             ~/.opam/log/lwt_eio-7-696431.env
# output-file          ~/.opam/log/lwt_eio-7-696431.out
### output ###
# File "test/test.md", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u _build/default/test/test.md _build/default/test/.mdx/test.md.corrected
# diff --git a/_build/default/test/test.md b/_build/default/test/.mdx/test.md.corrected
# index 7a9272f..ac6774e 100644
# --- a/_build/default/test/test.md
# +++ b/_build/default/test/.mdx/test.md.corrected
# @@ -41,20 +41,20 @@ Lwt and Eio fibers don't block each other:
#      );;
#  +eio: i = 1
#  +  lwt: i = 1
# -+  lwt: i = 2
#  +eio: i = 2
# -+  lwt: i = 3
# ++  lwt: i = 2
#  +eio: i = 3
# -+  lwt: i = 4
# ++  lwt: i = 3
#  +eio: i = 4
# -+  lwt: i = 5
# ++  lwt: i = 4
#  +eio: i = 5
# -+  lwt: i = 6
# ++  lwt: i = 5
#  +eio: i = 6
# -+  lwt: i = 7
# ++  lwt: i = 6
#  +eio: i = 7
# -+  lwt: i = 8
# ++  lwt: i = 7
#  +eio: i = 8
# ++  lwt: i = 8
#  - : unit = ()
#  ```
#  



<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions failed
| - build lwt_eio 0.5.1
+- 
+- The following changes have been performed
| - remove    lwt_eio       0.5.1
| - recompile cstruct       6.2.0
| - recompile eio           1.3
| - recompile fmt           0.11.0
| - install   astring       0.8.5
| - install   camlp-streams 5.0.1
| - install   cmdliner      2.1.0
| - install   eio_linux     1.3
| - install   eio_main      1.3
| - install   eio_posix     1.3
| - install   iomux         0.4
| - install   logs          0.10.0
| - install   mdx           2.5.1
| - install   ocaml-version 4.0.3
| - install   re            1.14.0
| - install   result        1.5
| - install   uring         2.7.0
+- 
# To update the current shell environment, run: eval $(opam env)

The former state can be restored with:
    /usr/bin/opam switch import "/home/opam/.opam/5.2/.opam-switch/backup/state-20260310091629.export"
Or you can retry to install your package selection with:
    /usr/bin/opam install --restore
2026-03-10 09:16.55 ---> saved as "fc4389330390a4b8a953aff6b09675e89f61e781619d6d6836120e53f90dce88"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  2/3: [lwt_eio: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "lwt_eio" "-j" "71" "@install" "@runtest" (CWD=/home/opam/.opam/5.2/.opam-switch/build/lwt_eio.0.5.1)
- File "test/test.md", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u _build/default/test/test.md _build/default/test/.mdx/test.md.corrected
- diff --git a/_build/default/test/test.md b/_build/default/test/.mdx/test.md.corrected
- index 7a9272f..ac6774e 100644
- --- a/_build/default/test/test.md
- +++ b/_build/default/test/.mdx/test.md.corrected
- @@ -41,20 +41,20 @@ Lwt and Eio fibers don't block each other:
-      );;
-  +eio: i = 1
-  +  lwt: i = 1
- -+  lwt: i = 2
-  +eio: i = 2
- -+  lwt: i = 3
- ++  lwt: i = 2
-  +eio: i = 3
- -+  lwt: i = 4
- ++  lwt: i = 3
-  +eio: i = 4
- -+  lwt: i = 5
- ++  lwt: i = 4
-  +eio: i = 5
- -+  lwt: i = 6
- ++  lwt: i = 5
-  +eio: i = 6
- -+  lwt: i = 7
- ++  lwt: i = 6
-  +eio: i = 7
- -+  lwt: i = 8
- ++  lwt: i = 7
-  +eio: i = 8
- ++  lwt: i = 8
-  - : unit = ()
-  ```
-  
[ERROR] The compilation of lwt_eio.0.5.1 failed at "dune build -p lwt_eio -j 71 @install @runtest".

#=== ERROR while compiling lwt_eio.0.5.1 ======================================#
# context              2.5.0 | linux/x86_64 | ocaml-base-compiler.5.2.1 | pinned(https://github.com/ocaml-multicore/lwt_eio/releases/download/v0.5.1/lwt_eio-0.5.1.tbz)
# path                 ~/.opam/5.2/.opam-switch/build/lwt_eio.0.5.1
# command              ~/.opam/opam-init/hooks/sandbox.sh build dune build -p lwt_eio -j 71 @install @runtest
# exit-code            1
# env-file             ~/.opam/log/lwt_eio-7-918c5c.env
# output-file          ~/.opam/log/lwt_eio-7-918c5c.out
### output ###
# File "test/test.md", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u _build/default/test/test.md _build/default/test/.mdx/test.md.corrected
# diff --git a/_build/default/test/test.md b/_build/default/test/.mdx/test.md.corrected
# index 7a9272f..ac6774e 100644
# --- a/_build/default/test/test.md
# +++ b/_build/default/test/.mdx/test.md.corrected
# @@ -41,20 +41,20 @@ Lwt and Eio fibers don't block each other:
#      );;
#  +eio: i = 1
#  +  lwt: i = 1
# -+  lwt: i = 2
#  +eio: i = 2
# -+  lwt: i = 3
# ++  lwt: i = 2
#  +eio: i = 3
# -+  lwt: i = 4
# ++  lwt: i = 3
#  +eio: i = 4
# -+  lwt: i = 5
# ++  lwt: i = 4
#  +eio: i = 5
# -+  lwt: i = 6
# ++  lwt: i = 5
#  +eio: i = 6
# -+  lwt: i = 7
# ++  lwt: i = 6
#  +eio: i = 7
# -+  lwt: i = 8
# ++  lwt: i = 7
#  +eio: i = 8
# ++  lwt: i = 8
#  - : unit = ()
#  ```
#  



<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions failed
| - build lwt_eio 0.5.1
+- 
- No changes have been performed
# To update the current shell environment, run: eval $(opam env)
'opam reinstall --with-test --verbose lwt_eio.0.5.1' 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 lwt_eio.0.5.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" != 'lwt_eio.0.5.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 1
2026-03-10 09:17.14: Job failed: Failed: Build failed
2026-03-10 09:17.14: Log analysis:
2026-03-10 09:17.14: >>> 
[ERROR] The compilation of lwt_eio.0.5.1 failed at "dune build -p lwt_eio -j 71 @install @runtest".
 (score = 20)
2026-03-10 09:17.14: >>> 
[ERROR] The compilation of lwt_eio.0.5.1 failed at "dune build -p lwt_eio -j 71 @install @runtest".
 (score = 20)
2026-03-10 09:17.14: The compilation of lwt_eio.0.5.1 failed at "dune build -p lwt_eio -j 71 @install @runtest".