(not at the head of any monitored branch or PR)
2026-01-07 09:51.22: New job: test rpmfile-eio.0.3.0 with lwt.6.0.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29184/head (1a538ed11284d3a47bf9851621c653c567cbc1a3)
                              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/29184/head" && git reset --hard 1a538ed1
git fetch origin master
git merge --no-edit 26ba45ff7b4d5c474404d370f5dab40d5aca345f
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:fc4475154a81e45c7a4fe10ae1ce9017b16705b50ae99ec37ca5504484b8ff17
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.6.0.0 6.0.0
RUN opam reinstall lwt.6.0.0; \
    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.6.0.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall rpmfile-eio.0.3.0; \
    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" != 'rpmfile-eio.0.3.0' && 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 rpmfile-eio.0.3.0) || true
RUN opam reinstall --with-test --verbose rpmfile-eio.0.3.0; \
    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" != 'rpmfile-eio.0.3.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1

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

2026-01-07 09:51.22: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:fc4475154a81e45c7a4fe10ae1ce9017b16705b50ae99ec37ca5504484b8ff17-lwt.6.0.0-rpmfile-eio.0.3.0-1a538ed11284d3a47bf9851621c653c567cbc1a3"
2026-01-07 09:51.22: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:fc4475154a81e45c7a4fe10ae1ce9017b16705b50ae99ec37ca5504484b8ff17)
 (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.6.0.0 6.0.0"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall lwt.6.0.0;\
             \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.6.0.0' && 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 rpmfile-eio.0.3.0;\
             \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\" != 'rpmfile-eio.0.3.0' && 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 rpmfile-eio.0.3.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose rpmfile-eio.0.3.0;\
             \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\" != 'rpmfile-eio.0.3.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-01-07 09:51.22: Waiting for resource in pool OCluster
2026-01-07 09:52.42: Waiting for worker…
2026-01-07 09:56.17: Got resource from pool OCluster
Building on laodoke.caelum.ci.dev
All commits already cached
Updating files:  60% (11571/19145)
Updating files:  61% (11679/19145)
Updating files:  62% (11870/19145)
Updating files:  63% (12062/19145)
Updating files:  64% (12253/19145)
Updating files:  65% (12445/19145)
Updating files:  66% (12636/19145)
Updating files:  67% (12828/19145)
Updating files:  68% (13019/19145)
Updating files:  69% (13211/19145)
Updating files:  70% (13402/19145)
Updating files:  71% (13593/19145)
Updating files:  72% (13785/19145)
Updating files:  73% (13976/19145)
Updating files:  74% (14168/19145)
Updating files:  75% (14359/19145)
Updating files:  76% (14551/19145)
Updating files:  77% (14742/19145)
Updating files:  78% (14934/19145)
Updating files:  79% (15125/19145)
Updating files:  80% (15316/19145)
Updating files:  81% (15508/19145)
Updating files:  82% (15699/19145)
Updating files:  83% (15891/19145)
Updating files:  84% (16082/19145)
Updating files:  85% (16274/19145)
Updating files:  86% (16465/19145)
Updating files:  87% (16657/19145)
Updating files:  88% (16848/19145)
Updating files:  89% (17040/19145)
Updating files:  90% (17231/19145)
Updating files:  91% (17422/19145)
Updating files:  92% (17614/19145)
Updating files:  93% (17805/19145)
Updating files:  94% (17997/19145)
Updating files:  95% (18188/19145)
Updating files:  96% (18380/19145)
Updating files:  97% (18571/19145)
Updating files:  98% (18763/19145)
Updating files:  99% (18954/19145)
Updating files: 100% (19145/19145)
Updating files: 100% (19145/19145), done.
HEAD is now at 26ba45ff7b Merge pull request #29174 from craff/master
Merge made by the 'ort' strategy.
 packages/lwt/lwt.6.0.0/opam                        | 64 ++++++++++++++++++++++
 packages/lwt_direct/lwt_direct.6.0.0/opam          | 41 ++++++++++++++
 packages/lwt_ppx/lwt_ppx.6.0.0/opam                | 46 ++++++++++++++++
 .../lwt_runtime_events.6.0.0/opam                  | 39 +++++++++++++
 4 files changed, 190 insertions(+)
 create mode 100644 packages/lwt/lwt.6.0.0/opam
 create mode 100644 packages/lwt_direct/lwt_direct.6.0.0/opam
 create mode 100644 packages/lwt_ppx/lwt_ppx.6.0.0/opam
 create mode 100644 packages/lwt_runtime_events/lwt_runtime_events.6.0.0/opam

(from ocaml/opam:debian-13-ocaml-5.4@sha256:fc4475154a81e45c7a4fe10ae1ce9017b16705b50ae99ec37ca5504484b8ff17)
2026-01-07 09:59.14 ---> using "03f0951594c938350775771f8c8fede6d107f2d2eee244220b7b8b4b1567de6e" 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-01-07 09:59.14 ---> using "c933f036b19f2f0c0887f671ec993a9dc79755040cbb635c24c9b9c241c841cd" 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-01-07 09:59.14 ---> using "7ecc7f75a5bf9dcfd6502f8a59ae1f7ab294c7cb737f8dd9abe743475bc57ced" 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-01-07 09:59.14 ---> using "f03eee248d01b26761fba1ca57252b7a2d5a4073d6250967ee99f663b30113e2" from cache

/home/opam: (env OPAMDOWNLOADJOBS 1)

/home/opam: (env OPAMERRLOGLEN 0)

/home/opam: (env OPAMPRECISETRACKING 1)

/home/opam: (env CI true)

/home/opam: (env OPAM_REPO_CI true)

/home/opam: (run (shell "rm -rf opam-repository/"))
2026-01-07 09:59.14 ---> using "bf0379b82096b6ba5dc91e9f0222794ba43ccc18e72cfb20cf13ead08a8436d8" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-01-07 09:59.16 ---> using "292afb5653bcfc33a829e267a22bab629bbb36c79f0a10df607e0e1094215217" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-01-07 09:59.16 ---> using "03b34a939048930464ca4522a5f7108169268ec0163d4fe373b1b7000dda1639" 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 [94.2 kB]
- Fetched 185 kB in 0s (1575 kB/s)
- Reading package lists...
- 
2026-01-07 09:59.16 ---> using "7a3d17df04b0189e6845a9e84877a32b312e51d016014dd49e0acd5cdb0dab09" from cache

/home/opam: (run (shell "opam pin add -k version -yn lwt.6.0.0 6.0.0"))
lwt is now pinned to version 6.0.0
2026-01-07 09:59.16 ---> using "39edf796bf081e7f626349c7f93ee641aab682eb3a84cd4abafe0fa282faa174" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall lwt.6.0.0;\
                        \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.6.0.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
lwt.6.0.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 8 packages
  - install base-bytes        base           [required by ocplib-endian]
  - install cppo              1.8.0          [required by lwt]
  - install csexp             1.5.2          [required by dune-configurator]
  - install dune              3.20.2         [required by lwt]
  - install dune-configurator 3.20.2         [required by lwt]
  - install lwt               6.0.0 (pinned)
  - install ocamlfind         1.9.8          [required by base-bytes]
  - install ocplib-endian     1.2            [required by lwt]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved cppo.1.8.0  (cached)
-> retrieved csexp.1.5.2  (cached)
-> retrieved dune.3.20.2, dune-configurator.3.20.2  (cached)
-> retrieved lwt.6.0.0  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ocplib-endian.1.2  (cached)
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed dune.3.20.2
-> installed csexp.1.5.2
-> installed cppo.1.8.0
-> installed ocplib-endian.1.2
-> installed dune-configurator.3.20.2
-> installed lwt.6.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-07 09:59.16 ---> using "22bd7a9c7d7cb66066587fd23103ba8f3fa57a35aa61ce14a9553d076774c038" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall rpmfile-eio.0.3.0;\
                        \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\" != 'rpmfile-eio.0.3.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
rpmfile-eio.0.3.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 16 packages
  - install bigstringaf        0.10.0 [required by eio]
  - install cstruct            6.2.0  [required by eio]
  - install domain-local-await 1.0.1  [required by eio]
  - install eio                1.3    [required by rpmfile-eio]
  - install fmt                0.11.0 [required by eio]
  - install hmap               0.8.1  [required by eio]
  - install lwt-dllist         1.1.0  [required by eio]
  - install mtime              2.1.0  [required by eio]
  - install ocamlbuild         0.16.1 [required by hmap, mtime]
  - install optint             0.3.0  [required by eio]
  - install psq                0.2.1  [required by eio]
  - install rpmfile            0.5.0  [required by rpmfile-eio]
  - install rpmfile-eio        0.3.0
  - 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 cstruct.6.2.0  (cached)
-> retrieved domain-local-await.1.0.1  (cached)
-> retrieved eio.1.3  (cached)
-> retrieved fmt.0.11.0  (cached)
-> retrieved hmap.0.8.1  (cached)
-> retrieved lwt-dllist.1.1.0  (cached)
-> retrieved mtime.2.1.0  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved optint.0.3.0  (cached)
-> retrieved psq.0.2.1  (cached)
-> retrieved rpmfile.0.5.0  (cached)
-> retrieved rpmfile-eio.0.3.0  (cached)
-> retrieved seq.base  (cached)
-> installed seq.base
-> retrieved thread-table.1.0.0  (cached)
-> retrieved topkg.1.1.1  (cached)
-> installed lwt-dllist.1.1.0
-> installed bigstringaf.0.10.0
-> installed thread-table.1.0.0
-> installed rpmfile.0.5.0
-> installed optint.0.3.0
-> installed psq.0.2.1
-> installed domain-local-await.1.0.1
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed hmap.0.8.1
-> installed mtime.2.1.0
-> installed fmt.0.11.0
-> installed cstruct.6.2.0
-> installed eio.1.3
-> installed rpmfile-eio.0.3.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-07 09:59.59 ---> saved as "45363fcc1ae2592fdb4c2afa7a4b5d494fab8f7f0632c3cf623e282b81658eb6"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test rpmfile-eio.0.3.0) || 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 rpmfile-eio        0.3.0
=== install 12 packages
  - install   alcotest           1.9.1  [required by rpmfile-eio]
  - install   astring            0.8.5  [required by alcotest]
  - install   cmdliner           2.1.0  [required by alcotest]
  - install   eio_linux          1.3    [required by eio_main]
  - install   eio_main           1.3    [required by rpmfile-eio]
  - install   eio_posix          1.3    [required by eio_main]
  - install   iomux              0.4    [required by eio_posix]
  - install   ocaml-syntax-shims 1.0.0  [required by alcotest]
  - install   re                 1.14.0 [required by alcotest]
  - install   stdlib-shims       0.3.0  [required by alcotest]
  - install   uring              2.7.0  [required by eio_linux]
  - install   uutf               1.0.4  [required by alcotest]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1  (https://opam.ocaml.org/cache)
-> retrieved astring.0.8.5  (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)
-> retrieved fmt.0.11.0  (https://opam.ocaml.org/cache)
-> retrieved iomux.0.4  (https://opam.ocaml.org/cache)
-> retrieved ocaml-syntax-shims.1.0.0  (https://opam.ocaml.org/cache)
-> retrieved re.1.14.0  (https://opam.ocaml.org/cache)
-> retrieved rpmfile-eio.0.3.0  (https://opam.ocaml.org/cache)
-> retrieved stdlib-shims.0.3.0  (https://opam.ocaml.org/cache)
-> retrieved uring.2.7.0  (https://opam.ocaml.org/cache)
-> retrieved uutf.1.0.4  (https://opam.ocaml.org/cache)
-> installed stdlib-shims.0.3.0
-> installed iomux.0.4
-> installed astring.0.8.5
-> installed ocaml-syntax-shims.1.0.0
-> installed re.1.14.0
-> removed   rpmfile-eio.0.3.0
-> removed   eio.1.3
-> removed   cstruct.6.2.0
-> removed   fmt.0.11.0
-> installed cmdliner.2.1.0
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed cstruct.6.2.0
-> installed alcotest.1.9.1
-> installed eio.1.3
-> installed uring.2.7.0
-> installed eio_posix.1.3
-> installed eio_linux.1.3
-> installed eio_main.1.3
-> installed rpmfile-eio.0.3.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-07 10:00.35 ---> saved as "004442ef0efd7b9dd52cfdc3caf7834377216170a52e5467999a5bfd96f25b47"

/home/opam: (run (shell  "opam reinstall --with-test --verbose rpmfile-eio.0.3.0;\
                        \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\" != 'rpmfile-eio.0.3.0' && 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 rpmfile-eio 0.3.0

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [rpmfile-eio.0.3.0: extract]
-> retrieved rpmfile-eio.0.3.0  (cached)
Processing  2/4: [rpmfile-eio: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "rpmfile-eio" "-j" "71" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/rpmfile-eio.0.3.0)
- (cd _build/default/rpmfile-eio/tests && ./test_select_all.exe)
- Testing `Rpmfile_eio (Selector.All)'.
- This run has ID `YNB3TSW3'.
- 
-   [OK]          hello-2.12.1-1.7.x86_64.rpm          0   name.
-   [OK]          hello-2.12.1-1.7.x86_64.rpm          1   version.
-   [OK]          hello-2.12.1-1.7.x86_64.rpm          2   filenames.
-   [OK]          hello-2.12.1-1.7.x86_64.rpm          3   provide_names.
- 
- Full test results in `~/.opam/5.4/.opam-switch/build/rpmfile-eio.0.3.0/_build/default/rpmfile-eio/tests/_build/_tests/Rpmfile_eio U+0028Selector.AllU+0029'.
- Test Successful in 0.001s. 4 tests run.
-> compiled  rpmfile-eio.0.3.0
-> removed   rpmfile-eio.0.3.0
-> installed rpmfile-eio.0.3.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-07 10:00.43 ---> saved as "5259f3b7f36c236ddbebb231491fda38b6f4fed7576a00cb554bf7665421a36d"
Job succeeded
2026-01-07 10:00.51: Job succeeded