(for PR #29530)

2026-03-17 10:25.55: New job: test lwt_eio.0.1, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29530/head (395113449576622af70540fb22e5d90e18554bdc)
                              on archlinux-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/29530/head" && git reset --hard 39511344
git fetch origin master
git merge --no-edit e589be2bb3f3c3428c9c98a122428f3ad2d44845
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:archlinux-ocaml-5.4@sha256:aa0c078243fa5a5b9bcea11d32e928c706b9c1f7e3ad329c80512c062f61b82d
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.1 0.1
RUN opam reinstall lwt_eio.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 "\"archlinux\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'lwt_eio.0.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.1) || true
RUN opam reinstall --with-test --verbose lwt_eio.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 "\"archlinux\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'lwt_eio.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-03-17 10:25.55: Using cache hint "ocaml/opam:archlinux-ocaml-5.4@sha256:aa0c078243fa5a5b9bcea11d32e928c706b9c1f7e3ad329c80512c062f61b82d-lwt_eio.0.1-395113449576622af70540fb22e5d90e18554bdc"
2026-03-17 10:25.55: Using OBuilder spec:
((from ocaml/opam:archlinux-ocaml-5.4@sha256:aa0c078243fa5a5b9bcea11d32e928c706b9c1f7e3ad329c80512c062f61b82d)
 (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.1 0.1"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall lwt_eio.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 \"\\\"archlinux\\\"\"; 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.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.1) || true"))
 (run (shell  "opam reinstall --with-test --verbose lwt_eio.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 \"\\\"archlinux\\\"\"; 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.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-17 10:25.55: Waiting for resource in pool OCluster
2026-03-17 11:19.15: Waiting for worker…
2026-03-17 11:21.31: Got resource from pool OCluster
Building on asteria.caelum.ci.dev
All commits already cached
HEAD is now at e589be2bb3 Merge pull request #29546 from johnwhitington/opam-publish-camlpdf.2.9
Merge made by the 'ort' strategy.
 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            | 7 ++++++-
 packages/lwt_eio/lwt_eio.0.5.1/opam          | 7 ++++++-
 packages/lwt_eio/lwt_eio.0.5/opam            | 7 ++++++-
 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, 403 insertions(+), 84 deletions(-)

(from ocaml/opam:archlinux-ocaml-5.4@sha256:aa0c078243fa5a5b9bcea11d32e928c706b9c1f7e3ad329c80512c062f61b82d)
2026-03-17 11:22.29 ---> using "38d42fc7683bed07dcd79ad892ffbc940c452fdbea9a7149f621cd310d06f913" 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-17 11:22.29 ---> using "cb724af37a2111ec5d4ae52bc3f0dced80c9a9a950af852bdd19f9948310f70f" 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.

[NOTE] The 'jobs' option was reset, its value was 71 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
           opam option jobs=71 --global
Continue? [Y/n] y
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-03-17 11:22.29 ---> using "9ae40559a522a1d172aec3749bdb3825ba274067eb22f21cf3a902090fb1a290" 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=arch os-version=20260308.0.497099
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 255
# 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-03-17 11:22.29 ---> using "6c28077ac97193cfecd0dbad779d1684a7be65078e17d78c62a6c710df533351" 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-17 11:22.29 ---> using "8977cc8c7c1d82d9344d944079f2f42382db588fb942dec1398b2665be97954b" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-03-17 11:22.30 ---> using "e6469530b46d3e51ff0074d04728d43479e3a60fead33d229a4e96a00c39e4bf" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-17 11:22.30 ---> using "1ef57245b45ae0fcf4ee33e123e7f018004690143b4d986f0a4a447910b0cf69" from cache

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/sbin/sudo "pacman" "-Sy"
- :: Synchronizing package databases...
-  core downloading...
-  extra downloading...
2026-03-17 11:22.30 ---> using "902c4a2ea9118015f413038d3d582e32a954925e4e5fc02e3f35995972a01fe4" from cache

/home/opam: (run (shell "opam pin add -k version -yn lwt_eio.0.1 0.1"))
lwt_eio is now pinned to version 0.1
2026-03-17 11:22.30 ---> using "c389c128ed9b22350be00e449355cacd05d064514e819f60ea0f9f52bf1d3eee" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall lwt_eio.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 \"\\\"archlinux\\\"\"; 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.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.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 21 packages
  ∗ base-bytes        base         [required by ocplib-endian]
  ∗ bigstringaf       0.10.0       [required by eio]
  ∗ cppo              1.8.0        [required by lwt]
  ∗ csexp             1.5.2        [required by dune-configurator]
  ∗ cstruct           6.2.0        [required by eio]
  ∗ dune              3.21.1       [required by lwt_eio]
  ∗ dune-configurator 3.21.1       [required by lwt]
  ∗ eio               0.9          [required by lwt_eio]
  ∗ fmt               0.11.0       [required by eio]
  ∗ hmap              0.8.1        [required by eio]
  ∗ lwt               6.0.0        [required by lwt_eio]
  ∗ lwt-dllist        1.1.0        [required by eio]
  ∗ lwt_eio           0.1 (pinned)
  ∗ mtime             2.1.0        [required by eio]
  ∗ ocamlbuild        0.16.1       [required by hmap, mtime]
  ∗ ocamlfind         1.9.8        [required by hmap, mtime]
  ∗ ocplib-endian     1.2          [required by lwt]
  ∗ optint            0.3.0        [required by eio]
  ∗ psq               0.2.1        [required by eio]
  ∗ seq               base         [required by psq]
  ∗ 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 dune.3.21.1, dune-configurator.3.21.1  (cached)
⬇ retrieved eio.0.9  (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.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 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 ocplib-endian.1.2
∗ installed dune-configurator.3.21.1
∗ installed bigstringaf.0.10.0
∗ installed eio.0.9
∗ installed lwt.6.0.0
∗ installed lwt_eio.0.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-17 11:23.04 ---> saved as "92d2250e5ca27c82666ef62711b0795ccd8dd1b2e51e945491c7c9c17c41e890"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test lwt_eio.0.1) || true"))
The following actions will be performed:
=== recompile 4 packages
  ↻ cstruct       6.2.0        [uses fmt]
  ↻ eio           0.9          [uses fmt]
  ↻ fmt           0.11.0       [uses cmdliner]
  ↻ lwt_eio       0.1 (pinned)
=== install 13 packages
  ∗ astring       0.8.5        [required by mdx]
  ∗ camlp-streams 5.0.1        [required by mdx]
  ∗ cmdliner      2.1.0        [required by mdx]
  ∗ eio_linux     0.9          [required by eio_main]
  ∗ eio_main      0.9          [required by lwt_eio]
  ∗ eio_posix     0.9          [required by eio_main]
  ∗ iomux         0.4          [required by eio_posix]
  ∗ logs          0.10.0       [required by mdx]
  ∗ mdx           2.5.1        [required by lwt_eio]
  ∗ ocaml-version 4.0.3        [required by mdx]
  ∗ re            1.14.0       [required by mdx]
  ∗ result        1.5          [required by mdx]
  ∗ 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.0.9, eio_linux.0.9, eio_main.0.9, eio_posix.0.9  (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.1
⊘ removed   eio.0.9
⊘ 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.0.9
∗ installed uring.2.7.0
∗ installed eio_posix.0.9
∗ installed mdx.2.5.1
∗ installed eio_linux.0.9
∗ installed eio_main.0.9
∗ installed lwt_eio.0.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-17 11:23.20 ---> saved as "b4cfa19994572b29423a55d2e474796a93db83bf6b4d0d593fadc24d0724c87e"

/home/opam: (run (shell  "opam reinstall --with-test --verbose lwt_eio.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 \"\\\"archlinux\\\"\"; 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.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
  ↻ lwt_eio 0.1 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  2/4: [lwt_eio: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "lwt_eio" "-j" "255" "--promote-install-files=false" "@install" (CWD=/home/opam/.opam/5.4/.opam-switch/build/lwt_eio.0.1)
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -g -bin-annot -bin-annot-occurrences -I lib/.lwt_eio.objs/byte -I /home/opam/.opam/5.4/lib/bigstringaf -I /home/opam/.opam/5.4/lib/bytes -I /home/opam/.opam/5.4/lib/cstruct -I /home/opam/.opam/5.4/lib/eio -I /home/opam/.opam/5.4/lib/eio/core -I /home/opam/.opam/5.4/lib/eio/unix -I /home/opam/.opam/5.4/lib/fmt -I /home/opam/.opam/5.4/lib/hmap -I /home/opam/.opam/5.4/lib/lwt -I /home/opam/.opam/5.4/lib/lwt-dllist -I /home/opam/.opam/5.4/lib/lwt/unix -I /home/opam/.opam/5.4/lib/mtime -I /home/opam/.opam/5.4/lib/mtime/clock -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/ocplib-endian -I /home/opam/.opam/5.4/lib/ocplib-endian/bigstring -I /home/opam/.opam/5.4/lib/optint -cmi-file lib/.lwt_eio.objs/byte/lwt_eio.cmi -no-alias-deps -o lib/.lwt_eio.objs/byte/lwt_eio.cmo -c -impl lib/lwt_eio.ml)
- File "lib/lwt_eio.ml", line 22, characters 2-7:
- 22 |   Fibre.fork_sub ~sw ~on_error:ignore_cancel (fun sw ->
-        ^^^^^
- Alert deprecated: module Eio.Std.Fibre
- Now spelt Fiber
- 
- File "lib/lwt_eio.ml", line 68, characters 6-11:
- 68 |       Fibre.yield ()
-            ^^^^^
- Alert deprecated: module Eio.Std.Fibre
- Now spelt Fiber
- 
- File "lib/lwt_eio.ml", line 91, characters 2-7:
- 91 |   Fibre.fork ~sw (fun () ->
-        ^^^^^
- Alert deprecated: module Eio.Std.Fibre
- Now spelt Fiber
- 
- File "lib/lwt_eio.ml", line 116, characters 4-9:
- 116 |     Fibre.fork ~sw (fun () ->
-           ^^^^^
- Alert deprecated: module Eio.Std.Fibre
- Now spelt Fiber
- 
- File "lib/lwt_eio.ml", line 125, characters 4-9:
- 125 |     Fibre.fork ~sw (fun () ->
-           ^^^^^
- Alert deprecated: module Eio.Std.Fibre
- Now spelt Fiber
- 
- File "lib/lwt_eio.ml", line 136, characters 2-7:
- 136 |   Fibre.fork ~sw (fun () ->
-         ^^^^^
- Alert deprecated: module Eio.Std.Fibre
- Now spelt Fiber
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -g -I lib/.lwt_eio.objs/byte -I lib/.lwt_eio.objs/native -I /home/opam/.opam/5.4/lib/bigstringaf -I /home/opam/.opam/5.4/lib/bytes -I /home/opam/.opam/5.4/lib/cstruct -I /home/opam/.opam/5.4/lib/eio -I /home/opam/.opam/5.4/lib/eio/core -I /home/opam/.opam/5.4/lib/eio/unix -I /home/opam/.opam/5.4/lib/fmt -I /home/opam/.opam/5.4/lib/hmap -I /home/opam/.opam/5.4/lib/lwt -I /home/opam/.opam/5.4/lib/lwt-dllist -I /home/opam/.opam/5.4/lib/lwt/unix -I /home/opam/.opam/5.4/lib/mtime -I /home/opam/.opam/5.4/lib/mtime/clock -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/ocplib-endian -I /home/opam/.opam/5.4/lib/ocplib-endian/bigstring -I /home/opam/.opam/5.4/lib/optint -cmi-file lib/.lwt_eio.objs/byte/lwt_eio.cmi -no-alias-deps -o lib/.lwt_eio.objs/native/lwt_eio.cmx -c -impl lib/lwt_eio.ml)
- File "lib/lwt_eio.ml", line 22, characters 2-7:
- 22 |   Fibre.fork_sub ~sw ~on_error:ignore_cancel (fun sw ->
-        ^^^^^
- Alert deprecated: module Eio.Std.Fibre
- Now spelt Fiber
- 
- File "lib/lwt_eio.ml", line 68, characters 6-11:
- 68 |       Fibre.yield ()
-            ^^^^^
- Alert deprecated: module Eio.Std.Fibre
- Now spelt Fiber
- 
- File "lib/lwt_eio.ml", line 91, characters 2-7:
- 91 |   Fibre.fork ~sw (fun () ->
-        ^^^^^
- Alert deprecated: module Eio.Std.Fibre
- Now spelt Fiber
- 
- File "lib/lwt_eio.ml", line 116, characters 4-9:
- 116 |     Fibre.fork ~sw (fun () ->
-           ^^^^^
- Alert deprecated: module Eio.Std.Fibre
- Now spelt Fiber
- 
- File "lib/lwt_eio.ml", line 125, characters 4-9:
- 125 |     Fibre.fork ~sw (fun () ->
-           ^^^^^
- Alert deprecated: module Eio.Std.Fibre
- Now spelt Fiber
- 
- File "lib/lwt_eio.ml", line 136, characters 2-7:
- 136 |   Fibre.fork ~sw (fun () ->
-         ^^^^^
- Alert deprecated: module Eio.Std.Fibre
- Now spelt Fiber
Processing  2/4: [lwt_eio: dune install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "install" "-p" "lwt_eio" "--create-install-files" "lwt_eio" (CWD=/home/opam/.opam/5.4/.opam-switch/build/lwt_eio.0.1)
λ compiled  lwt_eio.0.1
⊘ removed   lwt_eio.0.1
∗ installed lwt_eio.0.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-17 11:23.23 ---> saved as "02bade5860942bbd694dfe4197301312f66fa187978684817dc847feebe1fb48"
Job succeeded
2026-03-17 11:23.32: Job succeeded