(not at the head of any monitored branch or PR)
2025-11-10 14:41.57: New job: test mirage-kv-unix.2.0.0 with lwt.6.0.0~beta00, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/28558/head (db50ce02bd0238ef1431a20de40a98e9f360a8c0)
                              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/28558/head" && git reset --hard db50ce02
git fetch origin master
git merge --no-edit 21f97b2e6d7c617fc0a79cc8e59b2e10690960e1
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:0b68f45799a4ff0af182b78277d652e076097f37cbcb04aa9d74bfbd7d300e58
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~beta00 6.0.0~beta00
RUN opam reinstall lwt.6.0.0~beta00; \
    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~beta00' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall mirage-kv-unix.2.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" != 'mirage-kv-unix.2.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 --with-test mirage-kv-unix.2.0.0) || true
RUN opam reinstall --with-test --verbose mirage-kv-unix.2.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" != 'mirage-kv-unix.2.0.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 .

2025-11-10 14:41.57: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:0b68f45799a4ff0af182b78277d652e076097f37cbcb04aa9d74bfbd7d300e58-lwt.6.0.0~beta00-mirage-kv-unix.2.0.0-db50ce02bd0238ef1431a20de40a98e9f360a8c0"
2025-11-10 14:41.57: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:0b68f45799a4ff0af182b78277d652e076097f37cbcb04aa9d74bfbd7d300e58)
 (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~beta00 6.0.0~beta00"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall lwt.6.0.0~beta00;\
             \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~beta00' && 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 mirage-kv-unix.2.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\" != 'mirage-kv-unix.2.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 (network host)
      (shell "(opam reinstall --with-test mirage-kv-unix.2.0.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose mirage-kv-unix.2.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\" != 'mirage-kv-unix.2.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"))
)

2025-11-10 14:41.57: Waiting for resource in pool OCluster
2025-11-10 15:19.03: Waiting for worker…
2025-11-10 15:24.15: Got resource from pool OCluster
Building on toxis.caelum.ci.dev
All commits already cached
HEAD is now at 21f97b2e6d Merge pull request #28836 from dbuenzli/b0-publish-bytesrw.0.3.0
Merge made by the 'ort' strategy.
 packages/lwt/lwt.6.0.0~beta00/opam               | 67 ++++++++++++++++++++++++
 packages/lwt_direct/lwt_direct.6.0.0~beta00/opam | 42 +++++++++++++++
 2 files changed, 109 insertions(+)
 create mode 100644 packages/lwt/lwt.6.0.0~beta00/opam
 create mode 100644 packages/lwt_direct/lwt_direct.6.0.0~beta00/opam

(from ocaml/opam:debian-13-ocaml-5.4@sha256:0b68f45799a4ff0af182b78277d652e076097f37cbcb04aa9d74bfbd7d300e58)
Unable to find image 'ocaml/opam:debian-13-ocaml-5.4@sha256:0b68f45799a4ff0af182b78277d652e076097f37cbcb04aa9d74bfbd7d300e58' locally
docker.io/ocaml/opam@sha256:0b68f45799a4ff0af182b78277d652e076097f37cbcb04aa9d74bfbd7d300e58: Pulling from ocaml/opam
8a986146d58a: Pulling fs layer
8a986146d58a: Waiting
8a986146d58a: Verifying Checksum
8a986146d58a: Download complete
8a986146d58a: Pull complete
Digest: sha256:0b68f45799a4ff0af182b78277d652e076097f37cbcb04aa9d74bfbd7d300e58
Status: Downloaded newer image for ocaml/opam@sha256:0b68f45799a4ff0af182b78277d652e076097f37cbcb04aa9d74bfbd7d300e58
2025-11-10 15:24.43 ---> using "9f1bc9b76367c8d29be355965b06cbbd4aeb05818e6e1915136daad8eabad361" from cache

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2025-11-10 15:24.43 ---> using "7167cf2609d50147b3cfe8b00e0f1981e785c56c3c47bd6356e0f3732d6bafd7" 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
2025-11-10 15:24.43 ---> using "db7b310c65b31b91b9590efe8919a126934a7e42418115cd912ed2612662d318" 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~alpha1
# 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
2025-11-10 15:24.43 ---> using "370daf58656f453890b2ebe0d8367763e6fea8bbb7471d68f3d783ad40f9e8ee" 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/"))
2025-11-10 15:24.43 ---> using "d7d7d34009e7cd5bb4f41663ceab70bbd4c419269902dabc72ab91552d36d91d" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2025-11-10 15:24.44 ---> using "fcd819d209baf58060026dcfe02be8dd90eb259aa873cfb25ae35c0c8076aac2" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-11-10 15:24.44 ---> using "10ba8df5720754045d2e98ae8fb80dd90f362761469b5e50a1d789244f0270f3" 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]
- Fetched 90.7 kB in 0s (783 kB/s)
- Reading package lists...
- 
2025-11-10 15:24.44 ---> using "477af5ce466e8ba2f8e6be3ec0e272fb83ea119e026b7411512bb0905b823b2c" from cache

/home/opam: (run (shell "opam pin add -k version -yn lwt.6.0.0~beta00 6.0.0~beta00"))
lwt is now pinned to version 6.0.0~beta00
2025-11-10 15:24.44 ---> using "42dccd04f3893e32de5b301c3a927fc162c8ee981eb148a6242f0af3a4e7aa07" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall lwt.6.0.0~beta00;\
                        \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~beta00' && 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~beta00 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 9 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 domain_shims      0.1.0                 [required by lwt]
  - install dune              3.20.2                [required by lwt]
  - install dune-configurator 3.20.2                [required by lwt]
  - install lwt               6.0.0~beta00 (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 domain_shims.0.1.0  (cached)
-> retrieved dune.3.20.2, dune-configurator.3.20.2  (cached)
-> retrieved lwt.6.0.0~beta00  (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 domain_shims.0.1.0
-> 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~beta00
Done.
# To update the current shell environment, run: eval $(opam env)
2025-11-10 15:24.44 ---> using "7d19709798d6b95bd061256c354546cbc3e2d2fc97783c602cc38b64a7b8afa1" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall mirage-kv-unix.2.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\" != 'mirage-kv-unix.2.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"))
mirage-kv-unix.2.0.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 9 packages
  - install cstruct        6.2.0              [required by mirage-kv-unix]
  - install fmt            0.11.0             [required by cstruct]
  - install mirage-device  1.2.0 (deprecated) [required by mirage-kv]
  - install mirage-kv      2.0.0              [required by mirage-kv-lwt]
  - install mirage-kv-lwt  2.0.0 (deprecated) [required by mirage-kv-unix]
  - install mirage-kv-unix 2.0.0
  - install ocamlbuild     0.16.1             [required by ptime]
  - install ptime          1.2.0              [required by mirage-kv-unix]
  - install topkg          1.1.1              [required by ptime]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved cstruct.6.2.0  (cached)
-> retrieved fmt.0.11.0  (cached)
-> retrieved mirage-device.1.2.0  (cached)
-> retrieved mirage-kv.2.0.0, mirage-kv-lwt.2.0.0  (cached)
-> retrieved mirage-kv-unix.2.0.0  (https://opam.ocaml.org/cache)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ptime.1.2.0  (cached)
-> retrieved topkg.1.1.1  (cached)
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed fmt.0.11.0
-> installed ptime.1.2.0
-> installed mirage-device.1.2.0
-> installed mirage-kv.2.0.0
-> installed cstruct.6.2.0
-> installed mirage-kv-lwt.2.0.0
-> installed mirage-kv-unix.2.0.0
Done.

<><> mirage-kv-lwt.2.0.0 installed successfully <><><><><><><><><><><><><><><><>
=> Note: This package is deprecated.
=> mirage-kv-lwt is deprecated, and has been folded into mirage-kv

<><> mirage-device.1.2.0 installed successfully <><><><><><><><><><><><><><><><>
=> Note: This package is deprecated.
=> mirage-device is deprecated
# To update the current shell environment, run: eval $(opam env)
2025-11-10 15:25.06 ---> saved as "d1eee11e9cccf9a75dcc39941cbf423338aa60bc51f43b056e5033bd4e75ce99"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test mirage-kv-unix.2.0.0) || true"))
The following actions will be performed:
=== recompile 6 packages
  - recompile cstruct           6.2.0              [uses fmt]
  - recompile fmt               0.11.0             [uses cmdliner]
  - recompile mirage-device     1.2.0 (deprecated) [uses fmt]
  - recompile mirage-kv         2.0.0              [uses fmt]
  - recompile mirage-kv-lwt     2.0.0 (deprecated) [uses cstruct]
  - recompile mirage-kv-unix    2.0.0
=== install 10 packages
  - install   alcotest          1.0.1              [required by mirage-kv-unix]
  - install   astring           0.8.5              [required by alcotest]
  - install   cmdliner          1.3.0              [required by alcotest]
  - install   mirage-clock      2.0.0              [required by mirage-clock-unix]
  - install   mirage-clock-lwt  2.0.0 (deprecated) [required by mirage-clock-unix]
  - install   mirage-clock-unix 2.0.0              [required by mirage-kv-unix]
  - install   re                1.14.0             [required by alcotest]
  - install   rresult           0.7.0              [required by mirage-kv-unix]
  - install   stdlib-shims      0.3.0              [required by alcotest]
  - install   uuidm             0.9.10             [required by alcotest]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.0.1  (https://opam.ocaml.org/cache)
-> retrieved astring.0.8.5  (https://opam.ocaml.org/cache)
-> retrieved cmdliner.1.3.0  (https://opam.ocaml.org/cache)
-> retrieved cstruct.6.2.0  (https://opam.ocaml.org/cache)
-> retrieved fmt.0.11.0  (https://opam.ocaml.org/cache)
-> retrieved mirage-clock.2.0.0, mirage-clock-lwt.2.0.0, mirage-clock-unix.2.0.0  (https://opam.ocaml.org/cache)
-> retrieved mirage-device.1.2.0  (https://opam.ocaml.org/cache)
-> retrieved mirage-kv.2.0.0, mirage-kv-lwt.2.0.0  (https://opam.ocaml.org/cache)
-> retrieved mirage-kv-unix.2.0.0  (https://opam.ocaml.org/cache)
-> retrieved re.1.14.0  (https://opam.ocaml.org/cache)
-> retrieved rresult.0.7.0  (https://opam.ocaml.org/cache)
-> retrieved stdlib-shims.0.3.0  (https://opam.ocaml.org/cache)
-> retrieved uuidm.0.9.10  (https://opam.ocaml.org/cache)
-> installed stdlib-shims.0.3.0
-> installed rresult.0.7.0
-> installed astring.0.8.5
-> installed re.1.14.0
-> removed   mirage-kv-unix.2.0.0
-> removed   mirage-kv-lwt.2.0.0
-> removed   cstruct.6.2.0
-> removed   mirage-kv.2.0.0
-> removed   mirage-device.1.2.0
-> removed   fmt.0.11.0
-> installed cmdliner.1.3.0
-> installed uuidm.0.9.10
-> installed fmt.0.11.0
-> installed mirage-device.1.2.0
-> installed mirage-clock.2.0.0
-> installed mirage-kv.2.0.0
-> installed cstruct.6.2.0
-> installed mirage-clock-lwt.2.0.0
-> installed alcotest.1.0.1
-> installed mirage-kv-lwt.2.0.0
-> installed mirage-clock-unix.2.0.0
[ERROR] The compilation of mirage-kv-unix.2.0.0 failed at "dune runtest -p mirage-kv-unix -j 71".

#=== ERROR while compiling mirage-kv-unix.2.0.0 ===============================#
# context              2.5.0~alpha1 | linux/x86_64 | ocaml-base-compiler.5.4.0 | file:///home/opam/opam-repository
# path                 ~/.opam/5.4/.opam-switch/build/mirage-kv-unix.2.0.0
# command              ~/.opam/opam-init/hooks/sandbox.sh build dune runtest -p mirage-kv-unix -j 71
# exit-code            1
# env-file             ~/.opam/log/mirage-kv-unix-7-b13258.env
# output-file          ~/.opam/log/mirage-kv-unix-7-b13258.out
### output ###
# (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -g -bin-annot -bin-annot-occurrences -I test/.test_kv_unix.eobjs/byte -I /home/opam/.opam/5.4/lib/alcotest -I /home/opam/.opam/5.4/lib/astring -I /home/opam/.opam/5.4/lib/bytes -I /home/opam/.opam/5.4/lib/cmdliner -I /home/opam/.opam/5.4/lib/cstruct -I /home/opam/.opam/5.4/lib/domain_shims -I /home/opam/.opam/5.4/lib/fmt -I /home/opam/.opam/5.4/lib/fmt/cli -I /home/opam/.opam/5.4/lib/fmt/tty -I /home/opam/.opam/5.4/lib/lwt -I /home/opam/.opam/5.4/lib/lwt/unix -I /home/opam/.opam/5.4/lib/mirage-clock -I /home/opam/.opam/5.4/lib/mirage-clock-lwt -I /home/opam/.opam/5.4/lib/mirage-clock-unix -I /home/opam/.opam/5.4/lib/mirage-device -I /home/opam/.opam/5.4/lib/mirage-kv -I /home/opam/.opam/5.4/lib/mirage-kv-lwt -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/ptime -I /home/opam/.opam/5.4/lib/re -I /home/opam/.opam/5.4/lib/rresult -I /home/opam/.opam/5.4/lib/stdlib-shims -I /home/opam/.opam/5.4/lib/uuidm -I src/.mirage_kv_unix.objs/byte -no-alias-deps -o test/.test_kv_unix.eobjs/byte/test_kv_unix.cmo -c -impl test/test_kv_unix.ml)
# File "test/test_kv_unix.ml", line 31, characters 16-25:
# 31 | let failf fmt = Fmt.kstrf Alcotest.fail fmt
#                      ^^^^^^^^^
# Alert deprecated: Fmt.kstrf
# use Fmt.kstr instead.
# 
# File "test/test_kv_unix.ml", line 42, characters 12-20:
# 42 |   let str = Fmt.strf "%s-%a" s (Ptime.pp_rfc3339 ~space:false ()) now in
#                  ^^^^^^^^
# Alert deprecated: Fmt.strf
# use Fmt.str instead.
# (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -g -I test/.test_kv_unix.eobjs/byte -I test/.test_kv_unix.eobjs/native -I /home/opam/.opam/5.4/lib/alcotest -I /home/opam/.opam/5.4/lib/astring -I /home/opam/.opam/5.4/lib/bytes -I /home/opam/.opam/5.4/lib/cmdliner -I /home/opam/.opam/5.4/lib/cstruct -I /home/opam/.opam/5.4/lib/domain_shims -I /home/opam/.opam/5.4/lib/fmt -I /home/opam/.opam/5.4/lib/fmt/cli -I /home/opam/.opam/5.4/lib/fmt/tty -I /home/opam/.opam/5.4/lib/lwt -I /home/opam/.opam/5.4/lib/lwt/unix -I /home/opam/.opam/5.4/lib/mirage-clock -I /home/opam/.opam/5.4/lib/mirage-clock-lwt -I /home/opam/.opam/5.4/lib/mirage-clock-unix -I /home/opam/.opam/5.4/lib/mirage-device -I /home/opam/.opam/5.4/lib/mirage-kv -I /home/opam/.opam/5.4/lib/mirage-kv-lwt -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/ptime -I /home/opam/.opam/5.4/lib/re -I /home/opam/.opam/5.4/lib/rresult -I /home/opam/.opam/5.4/lib/stdlib-shims -I /home/opam/.opam/5.4/lib/uuidm -I src/.mirage_kv_unix.objs/byte -I src/.mirage_kv_unix.objs/native -cmi-file test/.test_kv_unix.eobjs/byte/test_kv_unix.cmi -no-alias-deps -o test/.test_kv_unix.eobjs/native/test_kv_unix.cmx -c -impl test/test_kv_unix.ml)
# File "test/test_kv_unix.ml", line 31, characters 16-25:
# 31 | let failf fmt = Fmt.kstrf Alcotest.fail fmt
#                      ^^^^^^^^^
# Alert deprecated: Fmt.kstrf
# use Fmt.kstr instead.
# 
# File "test/test_kv_unix.ml", line 42, characters 12-20:
# 42 |   let str = Fmt.strf "%s-%a" s (Ptime.pp_rfc3339 ~space:false ()) now in
#                  ^^^^^^^^
# Alert deprecated: Fmt.strf
# use Fmt.str instead.
# File "test/dune", lines 6-12, characters 0-109:
#  6 | (alias
#  7 |  (name runtest)
#  8 |  (deps
#  9 |   (:< test_kv_unix.exe)
# 10 |   (source_tree test_directory))
# 11 |  (action
# 12 |   (run %{<})))
# (cd _build/default/test && ./test_kv_unix.exe)
# Testing KV.
# This run has ID `4573D490-43ED-413C-A738-67298A7B7C28`.
#  ...                connect          0   connect_to_empty_string.
[OK]                connect          0   connect_to_empty_string.
#  ...                connect          1   connect_to_dev_null.
[OK]                connect          1   connect_to_dev_null.
#  ...                connect          2   connect_present_dir.
[OK]                connect          2   connect_present_dir.
#  ...                read             0   read_nonexistent_file_from_root.



<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions failed
| - build mirage-kv-unix 2.0.0
+- 
+- The following changes have been performed
| - remove    mirage-kv-unix    2.0.0
| - recompile cstruct           6.2.0
| - recompile fmt               0.11.0
| - recompile mirage-device     1.2.0
| - recompile mirage-kv         2.0.0
| - recompile mirage-kv-lwt     2.0.0
| - install   alcotest          1.0.1
| - install   astring           0.8.5
| - install   cmdliner          1.3.0
| - install   mirage-clock      2.0.0
| - install   mirage-clock-lwt  2.0.0
| - install   mirage-clock-unix 2.0.0
| - install   re                1.14.0
| - install   rresult           0.7.0
| - install   stdlib-shims      0.3.0
| - install   uuidm             0.9.10
+- 

<><> mirage-kv-lwt.2.0.0 installed successfully <><><><><><><><><><><><><><><><>
=> Note: This package is deprecated.
=> mirage-kv-lwt is deprecated, and has been folded into mirage-kv

<><> mirage-device.1.2.0 installed successfully <><><><><><><><><><><><><><><><>
=> Note: This package is deprecated.
=> mirage-device is deprecated

<><> mirage-clock-lwt.2.0.0 installed successfully ><><><><><><><><><><><><><><>
=> Note: This package is deprecated.
=> mirage-clock-lwt is deprecated, and has been folded into mirage-clock
# 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.4/.opam-switch/backup/state-20251110152507.export"
Or you can retry to install your package selection with:
    /usr/bin/opam install --restore
2025-11-10 15:25.22 ---> saved as "e5065a349ba092e94da072d3d2fc9bed73a174370864f6e4af00df4d947182c7"

/home/opam: (run (shell  "opam reinstall --with-test --verbose mirage-kv-unix.2.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\" != 'mirage-kv-unix.2.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"))
mirage-kv-unix.2.0.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
  - install mirage-kv-unix 2.0.0

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/3: [mirage-kv-unix.2.0.0: extract]
-> retrieved mirage-kv-unix.2.0.0  (cached)
Processing  2/3: [mirage-kv-unix: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "mirage-kv-unix" "-j" "71" (CWD=/home/opam/.opam/5.4/.opam-switch/build/mirage-kv-unix.2.0.0)
Processing  2/3: [mirage-kv-unix: dune runtest]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "mirage-kv-unix" "-j" "71" (CWD=/home/opam/.opam/5.4/.opam-switch/build/mirage-kv-unix.2.0.0)
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -g -bin-annot -bin-annot-occurrences -I test/.test_kv_unix.eobjs/byte -I /home/opam/.opam/5.4/lib/alcotest -I /home/opam/.opam/5.4/lib/astring -I /home/opam/.opam/5.4/lib/bytes -I /home/opam/.opam/5.4/lib/cmdliner -I /home/opam/.opam/5.4/lib/cstruct -I /home/opam/.opam/5.4/lib/domain_shims -I /home/opam/.opam/5.4/lib/fmt -I /home/opam/.opam/5.4/lib/fmt/cli -I /home/opam/.opam/5.4/lib/fmt/tty -I /home/opam/.opam/5.4/lib/lwt -I /home/opam/.opam/5.4/lib/lwt/unix -I /home/opam/.opam/5.4/lib/mirage-clock -I /home/opam/.opam/5.4/lib/mirage-clock-lwt -I /home/opam/.opam/5.4/lib/mirage-clock-unix -I /home/opam/.opam/5.4/lib/mirage-device -I /home/opam/.opam/5.4/lib/mirage-kv -I /home/opam/.opam/5.4/lib/mirage-kv-lwt -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/ptime -I /home/opam/.opam/5.4/lib/re -I /home/opam/.opam/5.4/lib/rresult -I /home/opam/.opam/5.4/lib/stdlib-shims -I /home/opam/.opam/5.4/lib/uuidm -I src/.mirage_kv_unix.objs/byte -no-alias-deps -o test/.test_kv_unix.eobjs/byte/test_kv_unix.cmo -c -impl test/test_kv_unix.ml)
- File "test/test_kv_unix.ml", line 31, characters 16-25:
- 31 | let failf fmt = Fmt.kstrf Alcotest.fail fmt
-                      ^^^^^^^^^
- Alert deprecated: Fmt.kstrf
- use Fmt.kstr instead.
- 
- File "test/test_kv_unix.ml", line 42, characters 12-20:
- 42 |   let str = Fmt.strf "%s-%a" s (Ptime.pp_rfc3339 ~space:false ()) now in
-                  ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -g -I test/.test_kv_unix.eobjs/byte -I test/.test_kv_unix.eobjs/native -I /home/opam/.opam/5.4/lib/alcotest -I /home/opam/.opam/5.4/lib/astring -I /home/opam/.opam/5.4/lib/bytes -I /home/opam/.opam/5.4/lib/cmdliner -I /home/opam/.opam/5.4/lib/cstruct -I /home/opam/.opam/5.4/lib/domain_shims -I /home/opam/.opam/5.4/lib/fmt -I /home/opam/.opam/5.4/lib/fmt/cli -I /home/opam/.opam/5.4/lib/fmt/tty -I /home/opam/.opam/5.4/lib/lwt -I /home/opam/.opam/5.4/lib/lwt/unix -I /home/opam/.opam/5.4/lib/mirage-clock -I /home/opam/.opam/5.4/lib/mirage-clock-lwt -I /home/opam/.opam/5.4/lib/mirage-clock-unix -I /home/opam/.opam/5.4/lib/mirage-device -I /home/opam/.opam/5.4/lib/mirage-kv -I /home/opam/.opam/5.4/lib/mirage-kv-lwt -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/ptime -I /home/opam/.opam/5.4/lib/re -I /home/opam/.opam/5.4/lib/rresult -I /home/opam/.opam/5.4/lib/stdlib-shims -I /home/opam/.opam/5.4/lib/uuidm -I src/.mirage_kv_unix.objs/byte -I src/.mirage_kv_unix.objs/native -cmi-file test/.test_kv_unix.eobjs/byte/test_kv_unix.cmi -no-alias-deps -o test/.test_kv_unix.eobjs/native/test_kv_unix.cmx -c -impl test/test_kv_unix.ml)
- File "test/test_kv_unix.ml", line 31, characters 16-25:
- 31 | let failf fmt = Fmt.kstrf Alcotest.fail fmt
-                      ^^^^^^^^^
- Alert deprecated: Fmt.kstrf
- use Fmt.kstr instead.
- 
- File "test/test_kv_unix.ml", line 42, characters 12-20:
- 42 |   let str = Fmt.strf "%s-%a" s (Ptime.pp_rfc3339 ~space:false ()) now in
-                  ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "test/dune", lines 6-12, characters 0-109:
-  6 | (alias
-  7 |  (name runtest)
-  8 |  (deps
-  9 |   (:< test_kv_unix.exe)
- 10 |   (source_tree test_directory))
- 11 |  (action
- 12 |   (run %{<})))
- (cd _build/default/test && ./test_kv_unix.exe)
- Testing KV.
- This run has ID `591D39A5-E182-4020-8058-A93DC7FAF73D`.
-  ...                connect          0   connect_to_empty_string.
[OK]                connect          0   connect_to_empty_string.
-  ...                connect          1   connect_to_dev_null.
[OK]                connect          1   connect_to_dev_null.
-  ...                connect          2   connect_present_dir.
[OK]                connect          2   connect_present_dir.
-  ...                read             0   read_nonexistent_file_from_root.
[ERROR] The compilation of mirage-kv-unix.2.0.0 failed at "dune runtest -p mirage-kv-unix -j 71".

#=== ERROR while compiling mirage-kv-unix.2.0.0 ===============================#
# context              2.5.0~alpha1 | linux/x86_64 | ocaml-base-compiler.5.4.0 | file:///home/opam/opam-repository
# path                 ~/.opam/5.4/.opam-switch/build/mirage-kv-unix.2.0.0
# command              ~/.opam/opam-init/hooks/sandbox.sh build dune runtest -p mirage-kv-unix -j 71
# exit-code            1
# env-file             ~/.opam/log/mirage-kv-unix-7-c5ded0.env
# output-file          ~/.opam/log/mirage-kv-unix-7-c5ded0.out
### output ###
# (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -g -bin-annot -bin-annot-occurrences -I test/.test_kv_unix.eobjs/byte -I /home/opam/.opam/5.4/lib/alcotest -I /home/opam/.opam/5.4/lib/astring -I /home/opam/.opam/5.4/lib/bytes -I /home/opam/.opam/5.4/lib/cmdliner -I /home/opam/.opam/5.4/lib/cstruct -I /home/opam/.opam/5.4/lib/domain_shims -I /home/opam/.opam/5.4/lib/fmt -I /home/opam/.opam/5.4/lib/fmt/cli -I /home/opam/.opam/5.4/lib/fmt/tty -I /home/opam/.opam/5.4/lib/lwt -I /home/opam/.opam/5.4/lib/lwt/unix -I /home/opam/.opam/5.4/lib/mirage-clock -I /home/opam/.opam/5.4/lib/mirage-clock-lwt -I /home/opam/.opam/5.4/lib/mirage-clock-unix -I /home/opam/.opam/5.4/lib/mirage-device -I /home/opam/.opam/5.4/lib/mirage-kv -I /home/opam/.opam/5.4/lib/mirage-kv-lwt -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/ptime -I /home/opam/.opam/5.4/lib/re -I /home/opam/.opam/5.4/lib/rresult -I /home/opam/.opam/5.4/lib/stdlib-shims -I /home/opam/.opam/5.4/lib/uuidm -I src/.mirage_kv_unix.objs/byte -no-alias-deps -o test/.test_kv_unix.eobjs/byte/test_kv_unix.cmo -c -impl test/test_kv_unix.ml)
# File "test/test_kv_unix.ml", line 31, characters 16-25:
# 31 | let failf fmt = Fmt.kstrf Alcotest.fail fmt
#                      ^^^^^^^^^
# Alert deprecated: Fmt.kstrf
# use Fmt.kstr instead.
# 
# File "test/test_kv_unix.ml", line 42, characters 12-20:
# 42 |   let str = Fmt.strf "%s-%a" s (Ptime.pp_rfc3339 ~space:false ()) now in
#                  ^^^^^^^^
# Alert deprecated: Fmt.strf
# use Fmt.str instead.
# (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -g -I test/.test_kv_unix.eobjs/byte -I test/.test_kv_unix.eobjs/native -I /home/opam/.opam/5.4/lib/alcotest -I /home/opam/.opam/5.4/lib/astring -I /home/opam/.opam/5.4/lib/bytes -I /home/opam/.opam/5.4/lib/cmdliner -I /home/opam/.opam/5.4/lib/cstruct -I /home/opam/.opam/5.4/lib/domain_shims -I /home/opam/.opam/5.4/lib/fmt -I /home/opam/.opam/5.4/lib/fmt/cli -I /home/opam/.opam/5.4/lib/fmt/tty -I /home/opam/.opam/5.4/lib/lwt -I /home/opam/.opam/5.4/lib/lwt/unix -I /home/opam/.opam/5.4/lib/mirage-clock -I /home/opam/.opam/5.4/lib/mirage-clock-lwt -I /home/opam/.opam/5.4/lib/mirage-clock-unix -I /home/opam/.opam/5.4/lib/mirage-device -I /home/opam/.opam/5.4/lib/mirage-kv -I /home/opam/.opam/5.4/lib/mirage-kv-lwt -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/ptime -I /home/opam/.opam/5.4/lib/re -I /home/opam/.opam/5.4/lib/rresult -I /home/opam/.opam/5.4/lib/stdlib-shims -I /home/opam/.opam/5.4/lib/uuidm -I src/.mirage_kv_unix.objs/byte -I src/.mirage_kv_unix.objs/native -cmi-file test/.test_kv_unix.eobjs/byte/test_kv_unix.cmi -no-alias-deps -o test/.test_kv_unix.eobjs/native/test_kv_unix.cmx -c -impl test/test_kv_unix.ml)
# File "test/test_kv_unix.ml", line 31, characters 16-25:
# 31 | let failf fmt = Fmt.kstrf Alcotest.fail fmt
#                      ^^^^^^^^^
# Alert deprecated: Fmt.kstrf
# use Fmt.kstr instead.
# 
# File "test/test_kv_unix.ml", line 42, characters 12-20:
# 42 |   let str = Fmt.strf "%s-%a" s (Ptime.pp_rfc3339 ~space:false ()) now in
#                  ^^^^^^^^
# Alert deprecated: Fmt.strf
# use Fmt.str instead.
# File "test/dune", lines 6-12, characters 0-109:
#  6 | (alias
#  7 |  (name runtest)
#  8 |  (deps
#  9 |   (:< test_kv_unix.exe)
# 10 |   (source_tree test_directory))
# 11 |  (action
# 12 |   (run %{<})))
# (cd _build/default/test && ./test_kv_unix.exe)
# Testing KV.
# This run has ID `591D39A5-E182-4020-8058-A93DC7FAF73D`.
#  ...                connect          0   connect_to_empty_string.
[OK]                connect          0   connect_to_empty_string.
#  ...                connect          1   connect_to_dev_null.
[OK]                connect          1   connect_to_dev_null.
#  ...                connect          2   connect_present_dir.
[OK]                connect          2   connect_present_dir.
#  ...                read             0   read_nonexistent_file_from_root.



<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions failed
| - build mirage-kv-unix 2.0.0
+- 
- No changes have been performed
# To update the current shell environment, run: eval $(opam env)
'opam reinstall --with-test --verbose mirage-kv-unix.2.0.0' 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 mirage-kv-unix.2.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" != 'mirage-kv-unix.2.0.0' && 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
2025-11-10 15:25.38: Job failed: Failed: Build failed
2025-11-10 15:25.38: Log analysis:
2025-11-10 15:25.38: >>> 
[ERROR] The compilation of mirage-kv-unix.2.0.0 failed at "dune runtest -p mirage-kv-unix -j 71".
 (score = 20)
2025-11-10 15:25.38: >>> 
[ERROR] The compilation of mirage-kv-unix.2.0.0 failed at "dune runtest -p mirage-kv-unix -j 71".
 (score = 20)
2025-11-10 15:25.38: The compilation of mirage-kv-unix.2.0.0 failed at "dune runtest -p mirage-kv-unix -j 71".