(not at the head of any monitored branch or PR)
2025-11-10 14:41.58: New job: test current.0.7.2 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 current.0.7.2; \
    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" != 'current.0.7.2' && 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 current.0.7.2) || true
RUN opam reinstall --with-test --verbose current.0.7.2; \
    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" != 'current.0.7.2' && 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.58: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:0b68f45799a4ff0af182b78277d652e076097f37cbcb04aa9d74bfbd7d300e58-lwt.6.0.0~beta00-current.0.7.2-db50ce02bd0238ef1431a20de40a98e9f360a8c0"
2025-11-10 14:41.58: 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 current.0.7.2;\
             \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\" != 'current.0.7.2' && 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 current.0.7.2) || true"))
 (run (shell  "opam reinstall --with-test --verbose current.0.7.2;\
             \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\" != 'current.0.7.2' && 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.58: Waiting for resource in pool OCluster
2025-11-10 15:33.45: Waiting for worker…
2025-11-10 15:37.07: Got resource from pool OCluster
Building on laodoke.caelum.ci.dev
All commits already cached
Updating files:  68% (12885/18704)
Updating files:  69% (12906/18704)
Updating files:  70% (13093/18704)
Updating files:  71% (13280/18704)
Updating files:  72% (13467/18704)
Updating files:  73% (13654/18704)
Updating files:  74% (13841/18704)
Updating files:  75% (14028/18704)
Updating files:  76% (14216/18704)
Updating files:  77% (14403/18704)
Updating files:  78% (14590/18704)
Updating files:  79% (14777/18704)
Updating files:  80% (14964/18704)
Updating files:  81% (15151/18704)
Updating files:  82% (15338/18704)
Updating files:  83% (15525/18704)
Updating files:  84% (15712/18704)
Updating files:  85% (15899/18704)
Updating files:  86% (16086/18704)
Updating files:  87% (16273/18704)
Updating files:  88% (16460/18704)
Updating files:  89% (16647/18704)
Updating files:  90% (16834/18704)
Updating files:  91% (17021/18704)
Updating files:  92% (17208/18704)
Updating files:  93% (17395/18704)
Updating files:  94% (17582/18704)
Updating files:  95% (17769/18704)
Updating files:  96% (17956/18704)
Updating files:  97% (18143/18704)
Updating files:  98% (18330/18704)
Updating files:  99% (18517/18704)
Updating files: 100% (18704/18704)
Updating files: 100% (18704/18704), done.
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:37.44 ---> 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:37.44 ---> 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:37.44 ---> 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:37.44 ---> 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:37.44 ---> using "d7d7d34009e7cd5bb4f41663ceab70bbd4c419269902dabc72ab91552d36d91d" from cache

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

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-11-10 15:37.46 ---> 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 (681 kB/s)
- Reading package lists...
- 
2025-11-10 15:37.46 ---> 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:37.46 ---> 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:37.46 ---> using "7d19709798d6b95bd061256c354546cbc3e2d2fc97783c602cc38b64a7b8afa1" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall current.0.7.2;\
                        \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\" != 'current.0.7.2' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
current.0.7.2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== recompile 1 package
  - recompile lwt                 6.0.0~beta00 (pinned) [uses conf-libev]
=== install 27 packages
  - install   asetmap             0.8.1                 [required by prometheus]
  - install   astring             0.8.5                 [required by current]
  - install   bos                 0.2.1                 [required by current]
  - install   cmdliner            2.0.0                 [required by current]
  - install   conf-libev          4-13                  [required by current]
  - install   conf-pkg-config     4                     [required by conf-sqlite3]
  - install   conf-sqlite3        1                     [required by sqlite3]
  - install   current             0.7.2
  - install   current_incr        0.6.1                 [required by current]
  - install   duration            0.2.1                 [required by current]
  - install   fmt                 0.11.0                [required by current]
  - install   fpath               0.7.3                 [required by current]
  - install   logs                0.10.0                [required by current]
  - install   lwt-dllist          1.1.0                 [required by current]
  - install   ocaml-compiler-libs v0.17.0               [required by ppxlib]
  - install   ocamlbuild          0.16.1                [required by astring, bos]
  - install   ppx_derivers        1.2.1                 [required by ppx_deriving]
  - install   ppx_deriving        6.1.1                 [required by current]
  - install   ppxlib              0.37.0                [required by ppx_deriving]
  - install   prometheus          1.2                   [required by current]
  - install   re                  1.14.0                [required by current]
  - install   result              1.5                   [required by current]
  - install   rresult             0.7.0                 [required by bos]
  - install   sexplib0            v0.17.0               [required by ppxlib]
  - install   sqlite3             5.3.1                 [required by current]
  - install   stdlib-shims        0.3.0                 [required by ppxlib]
  - install   topkg               1.1.1                 [required by astring, bos]

The following system packages will first need to be installed:
    libev-dev libsqlite3-dev pkg-config

<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>

opam believes some required external dependencies are missing. opam can:
> 1. Run apt-get to install them (may need root/sudo access)
  2. Display the recommended apt-get command and wait while you run it manually (e.g. in another terminal)
  3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
  4. Abort the installation

[1/2/3/4] 1

+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "libev-dev" "libsqlite3-dev" "pkg-config"
- Selecting previously unselected package libev4t64:amd64.
- (Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 20653 files and directories currently installed.)
- Preparing to unpack .../0-libev4t64_1%3a4.33-2.1+b1_amd64.deb ...
- Unpacking libev4t64:amd64 (1:4.33-2.1+b1) ...
- Selecting previously unselected package libev-dev:amd64.
- Preparing to unpack .../1-libev-dev_1%3a4.33-2.1+b1_amd64.deb ...
- Unpacking libev-dev:amd64 (1:4.33-2.1+b1) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../2-libpkgconf3_1.8.1-4_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-4) ...
- Selecting previously unselected package libsqlite3-dev:amd64.
- Preparing to unpack .../3-libsqlite3-dev_3.46.1-7_amd64.deb ...
- Unpacking libsqlite3-dev:amd64 (3.46.1-7) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../4-pkgconf-bin_1.8.1-4_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../5-pkgconf_1.8.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../6-pkg-config_1.8.1-4_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-4) ...
- Setting up libev4t64:amd64 (1:4.33-2.1+b1) ...
- Setting up libpkgconf3:amd64 (1.8.1-4) ...
- Setting up libsqlite3-dev:amd64 (3.46.1-7) ...
- Setting up pkgconf-bin (1.8.1-4) ...
- Setting up libev-dev:amd64 (1:4.33-2.1+b1) ...
- Setting up pkgconf:amd64 (1.8.1-4) ...
- Setting up pkg-config:amd64 (1.8.1-4) ...
- Processing triggers for libc-bin (2.41-12) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved asetmap.0.8.1  (cached)
-> retrieved astring.0.8.5  (cached)
-> retrieved bos.0.2.1  (cached)
-> retrieved cmdliner.2.0.0  (cached)
-> retrieved conf-libev.4-13  (cached)
-> retrieved current.0.7.2  (cached)
-> installed conf-pkg-config.4
-> retrieved current_incr.0.6.1  (cached)
-> retrieved duration.0.2.1  (cached)
-> retrieved fmt.0.11.0  (cached)
-> installed conf-sqlite3.1
-> retrieved fpath.0.7.3  (cached)
-> retrieved logs.0.10.0  (cached)
-> retrieved lwt-dllist.1.1.0  (cached)
-> retrieved ocaml-compiler-libs.v0.17.0  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> installed duration.0.2.1
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppx_deriving.6.1.1  (cached)
-> installed lwt-dllist.1.1.0
-> removed   lwt.6.0.0~beta00
-> installed conf-libev.4-13
-> installed current_incr.0.6.1
-> installed ppx_derivers.1.2.1
-> retrieved ppxlib.0.37.0  (cached)
-> retrieved prometheus.1.2  (cached)
-> retrieved re.1.14.0  (cached)
-> retrieved result.1.5  (cached)
-> retrieved rresult.0.7.0  (cached)
-> retrieved sexplib0.v0.17.0  (cached)
-> retrieved sqlite3.5.3.1  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved topkg.1.1.1  (cached)
-> installed result.1.5
-> installed stdlib-shims.0.3.0
-> installed sexplib0.v0.17.0
-> installed ocaml-compiler-libs.v0.17.0
-> installed re.1.14.0
-> installed sqlite3.5.3.1
-> installed lwt.6.0.0~beta00
-> installed cmdliner.2.0.0
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed asetmap.0.8.1
-> installed rresult.0.7.0
-> installed fmt.0.11.0
-> installed astring.0.8.5
-> installed prometheus.1.2
-> installed fpath.0.7.3
-> installed logs.0.10.0
-> installed bos.0.2.1
-> installed ppxlib.0.37.0
-> installed ppx_deriving.6.1.1
-> installed current.0.7.2
Done.
# To update the current shell environment, run: eval $(opam env)
2025-11-10 15:39.15 ---> saved as "9a6b80e749c0d679b6623439abc2b0d96eaa9bf8a1431e6c215abd8d866dcd5a"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test current.0.7.2) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile current                 0.7.2
=== install 43 packages
  - install   alcotest                1.9.1   [required by current]
  - install   alcotest-lwt            1.9.1   [required by current]
  - install   angstrom                0.16.1  [required by uri]
  - install   asn1-combinators        0.3.2   [required by x509]
  - install   base                    v0.17.3 [required by ppx_sexp_conv]
  - install   base64                  3.5.2   [required by cohttp]
  - install   bigstringaf             0.10.0  [required by angstrom]
  - install   ca-certs                1.0.1   [required by conduit-lwt-unix]
  - install   cohttp                  6.1.1   [required by cohttp-lwt, cohttp-lwt-unix]
  - install   cohttp-lwt              6.1.1   [required by prometheus-app]
  - install   cohttp-lwt-unix         6.1.1   [required by prometheus-app]
  - install   conduit                 8.0.0   [required by conduit-lwt]
  - install   conduit-lwt             8.0.0   [required by cohttp-lwt-unix]
  - install   conduit-lwt-unix        8.0.0   [required by cohttp-lwt-unix]
  - install   conf-gmp                5       [required by conf-gmp-powm-sec, zarith]
  - install   conf-gmp-powm-sec       4       [required by mirage-crypto-pk]
  - install   digestif                1.3.0   [required by ca-certs]
  - install   domain-name             0.5.0   [required by ipaddr]
  - install   eqaf                    0.10    [required by digestif, mirage-crypto]
  - install   gmap                    0.3.0   [required by x509]
  - install   http                    6.1.1   [required by cohttp-lwt, cohttp-lwt-unix]
  - install   ipaddr                  5.6.1   [required by cohttp-lwt]
  - install   ipaddr-sexp             5.6.1   [required by conduit-lwt-unix]
  - install   kdf                     1.0.0   [required by x509]
  - install   macaddr                 5.6.1   [required by ipaddr]
  - install   magic-mime              1.3.1   [required by cohttp-lwt-unix]
  - install   mirage-crypto           2.0.2   [required by ca-certs]
  - install   mirage-crypto-ec        2.0.2   [required by x509]
  - install   mirage-crypto-pk        2.0.2   [required by x509]
  - install   mirage-crypto-rng       2.0.2   [required by x509]
  - install   ocaml-syntax-shims      1.0.0   [required by alcotest]
  - install   ocaml_intrinsics_kernel v0.17.1 [required by base]
  - install   ohex                    0.2.0   [required by ca-certs]
  - install   ppx_sexp_conv           v0.17.1 [required by cohttp-lwt, cohttp-lwt-unix]
  - install   ppxlib_jane             v0.17.4 [required by ppx_sexp_conv]
  - install   prometheus-app          1.2     [required by current]
  - install   ptime                   1.2.0   [required by ca-certs]
  - install   stringext               1.6.0   [required by cohttp]
  - install   uri                     4.4.0   [required by cohttp-lwt]
  - install   uri-sexp                4.4.0   [required by cohttp]
  - install   uutf                    1.0.4   [required by alcotest]
  - install   x509                    1.0.6   [required by ca-certs]
  - install   zarith                  1.14    [required by mirage-crypto-pk]

The following system packages will first need to be installed:
    libgmp-dev

<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>

opam believes some required external dependencies are missing. opam can:
> 1. Run apt-get to install them (may need root/sudo access)
  2. Display the recommended apt-get command and wait while you run it manually (e.g. in another terminal)
  3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
  4. Abort the installation

[1/2/3/4] 1

+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "libgmp-dev"
- Selecting previously unselected package libgmpxx4ldbl:amd64.
- (Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 20719 files and directories currently installed.)
- Preparing to unpack .../libgmpxx4ldbl_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libgmp-dev:amd64.
- Preparing to unpack .../libgmp-dev_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Setting up libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Setting up libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Processing triggers for libc-bin (2.41-12) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1, alcotest-lwt.1.9.1  (https://opam.ocaml.org/cache)
-> retrieved angstrom.0.16.1  (https://opam.ocaml.org/cache)
-> retrieved asn1-combinators.0.3.2  (https://opam.ocaml.org/cache)
-> retrieved base.v0.17.3  (https://opam.ocaml.org/cache)
-> retrieved base64.3.5.2  (https://opam.ocaml.org/cache)
-> retrieved bigstringaf.0.10.0  (https://opam.ocaml.org/cache)
-> retrieved ca-certs.1.0.1  (https://opam.ocaml.org/cache)
-> retrieved cohttp.6.1.1, cohttp-lwt.6.1.1, cohttp-lwt-unix.6.1.1, http.6.1.1  (https://opam.ocaml.org/cache)
-> installed base64.3.5.2
-> retrieved conduit.8.0.0, conduit-lwt.8.0.0, conduit-lwt-unix.8.0.0  (https://opam.ocaml.org/cache)
-> retrieved conf-gmp.5  (https://opam.ocaml.org/cache)
-> installed conf-gmp.5
-> retrieved conf-gmp-powm-sec.4  (https://opam.ocaml.org/cache)
-> installed conf-gmp-powm-sec.4
-> installed bigstringaf.0.10.0
-> retrieved current.0.7.2  (https://opam.ocaml.org/cache)
-> installed http.6.1.1
-> retrieved digestif.1.3.0  (https://opam.ocaml.org/cache)
-> retrieved domain-name.0.5.0  (https://opam.ocaml.org/cache)
-> retrieved eqaf.0.10  (https://opam.ocaml.org/cache)
-> retrieved gmap.0.3.0  (https://opam.ocaml.org/cache)
-> retrieved ipaddr.5.6.1, ipaddr-sexp.5.6.1, macaddr.5.6.1  (https://opam.ocaml.org/cache)
-> installed domain-name.0.5.0
-> retrieved kdf.1.0.0  (https://opam.ocaml.org/cache)
-> installed gmap.0.3.0
-> retrieved magic-mime.1.3.1  (https://opam.ocaml.org/cache)
-> installed macaddr.5.6.1
-> installed eqaf.0.10
-> retrieved mirage-crypto.2.0.2, mirage-crypto-ec.2.0.2, mirage-crypto-pk.2.0.2, mirage-crypto-rng.2.0.2  (https://opam.ocaml.org/cache)
-> installed ipaddr.5.6.1
-> retrieved ocaml-syntax-shims.1.0.0  (https://opam.ocaml.org/cache)
-> retrieved ocaml_intrinsics_kernel.v0.17.1  (https://opam.ocaml.org/cache)
-> installed magic-mime.1.3.1
-> retrieved ohex.0.2.0  (https://opam.ocaml.org/cache)
-> retrieved ppx_sexp_conv.v0.17.1  (https://opam.ocaml.org/cache)
-> retrieved ppxlib_jane.v0.17.4  (https://opam.ocaml.org/cache)
-> retrieved prometheus-app.1.2  (https://opam.ocaml.org/cache)
-> installed digestif.1.3.0
-> installed ocaml_intrinsics_kernel.v0.17.1
-> installed ohex.0.2.0
-> retrieved ptime.1.2.0  (https://opam.ocaml.org/cache)
-> retrieved stringext.1.6.0  (https://opam.ocaml.org/cache)
-> retrieved uri.4.4.0, uri-sexp.4.4.0  (https://opam.ocaml.org/cache)
-> retrieved uutf.1.0.4  (https://opam.ocaml.org/cache)
-> installed stringext.1.6.0
-> retrieved x509.1.0.6  (https://opam.ocaml.org/cache)
-> retrieved zarith.1.14  (https://opam.ocaml.org/cache)
-> installed ocaml-syntax-shims.1.0.0
-> installed ppxlib_jane.v0.17.4
-> installed angstrom.0.16.1
-> installed uutf.1.0.4
-> removed   current.0.7.2
-> installed ptime.1.2.0
-> installed mirage-crypto.2.0.2
-> installed kdf.1.0.0
-> installed mirage-crypto-rng.2.0.2
-> installed asn1-combinators.0.3.2
-> installed alcotest.1.9.1
-> installed alcotest-lwt.1.9.1
-> installed uri.4.4.0
-> installed zarith.1.14
-> installed mirage-crypto-pk.2.0.2
-> installed base.v0.17.3
-> installed mirage-crypto-ec.2.0.2
-> installed ppx_sexp_conv.v0.17.1
-> installed x509.1.0.6
-> installed ca-certs.1.0.1
-> installed ipaddr-sexp.5.6.1
-> installed uri-sexp.4.4.0
-> installed conduit.8.0.0
-> installed cohttp.6.1.1
-> installed conduit-lwt.8.0.0
-> installed cohttp-lwt.6.1.1
-> installed conduit-lwt-unix.8.0.0
-> installed cohttp-lwt-unix.6.1.1
-> installed prometheus-app.1.2
[ERROR] The compilation of current.0.7.2 failed at "dune build -p current -j 71 @install @runtest".

#=== ERROR while compiling current.0.7.2 ======================================#
# 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/current.0.7.2
# command              ~/.opam/opam-init/hooks/sandbox.sh build dune build -p current -j 71 @install @runtest
# exit-code            1
# env-file             ~/.opam/log/current-7-207f74.env
# output-file          ~/.opam/log/current-7-207f74.out
### output ###
# File "test/dune.inc", lines 1-35, characters 0-725:
#  1 | (rule
#  2 |  (targets context.1.dot
#  3 |           latch.1.dot
# ....
# 33 |           v5n.2.dot
# 34 |           v5n.3.dot)
# 35 |  (action (run ./test.exe)))
# (cd _build/default/test && ./test.exe)
# Testing `test'.
# This run has ID `KA7L2KJ7'.
# 
#   [OK]          pipelines            0   v1.
#   [OK]          pipelines            1   v1-cancel.
#   [OK]          pipelines            2   v2.
#   [OK]          pipelines            3   v3.
#   [OK]          pipelines            4   v4.
#   [OK]          pipelines            5   v5.
#   [OK]          pipelines            6   v5-nil.
#   [OK]          pipelines            7   option-some.
#   [OK]          pipelines            8   option-none.
#   [OK]          pipelines            9   state.
#   [OK]          pipelines           10   pair.
#   [OK]          pipelines           11   latch.
#   [OK]          pipelines           12   context.
#   [OK]          terms                0   all_labelled.
#   [OK]          terms                1   metadata.
#   [OK]          terms                2   observe.
#   [OK]          cache                0   basic.
#   [OK]          cache                1   expires.
#   [OK]          cache                2   autocancel.
#   [OK]          cache                3   output.
#   [OK]          cache                4   output_autocancel.
#   [OK]          cache                5   output_retry.
#   [OK]          cache                6   output_retry_new.
#   [OK]          cache                7   latched.
#   [OK]          cache                8   latched_autocancel.
#   [OK]          cache                9   clear_error.
#   [OK]          monitor              0   basic.



<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions failed
| - build current 0.7.2
+- 
+- The following changes have been performed
| - remove  current                 0.7.2
| - install alcotest                1.9.1
| - install alcotest-lwt            1.9.1
| - install angstrom                0.16.1
| - install asn1-combinators        0.3.2
| - install base                    v0.17.3
| - install base64                  3.5.2
| - install bigstringaf             0.10.0
| - install ca-certs                1.0.1
| - install cohttp                  6.1.1
| - install cohttp-lwt              6.1.1
| - install cohttp-lwt-unix         6.1.1
| - install conduit                 8.0.0
| - install conduit-lwt             8.0.0
| - install conduit-lwt-unix        8.0.0
| - install conf-gmp                5
| - install conf-gmp-powm-sec       4
| - install digestif                1.3.0
| - install domain-name             0.5.0
| - install eqaf                    0.10
| - install gmap                    0.3.0
| - install http                    6.1.1
| - install ipaddr                  5.6.1
| - install ipaddr-sexp             5.6.1
| - install kdf                     1.0.0
| - install macaddr                 5.6.1
| - install magic-mime              1.3.1
| - install mirage-crypto           2.0.2
| - install mirage-crypto-ec        2.0.2
| - install mirage-crypto-pk        2.0.2
| - install mirage-crypto-rng       2.0.2
| - install ocaml-syntax-shims      1.0.0
| - install ocaml_intrinsics_kernel v0.17.1
| - install ohex                    0.2.0
| - install ppx_sexp_conv           v0.17.1
| - install ppxlib_jane             v0.17.4
| - install prometheus-app          1.2
| - install ptime                   1.2.0
| - install stringext               1.6.0
| - install uri                     4.4.0
| - install uri-sexp                4.4.0
| - install uutf                    1.0.4
| - install x509                    1.0.6
| - install zarith                  1.14
+- 
# 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-20251110153916.export"
Or you can retry to install your package selection with:
    /usr/bin/opam install --restore
2025-11-10 15:40.38 ---> saved as "4f15a0ccb28c92f534d9347043d58d5b0f0214cdeed7373baeaa24d1a533c53c"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/3: [current.0.7.2: extract]
-> retrieved current.0.7.2  (cached)
Processing  2/3: [current: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "current" "-j" "71" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/current.0.7.2)
- File "test/dune.inc", lines 1-35, characters 0-725:
-  1 | (rule
-  2 |  (targets context.1.dot
-  3 |           latch.1.dot
- ....
- 33 |           v5n.2.dot
- 34 |           v5n.3.dot)
- 35 |  (action (run ./test.exe)))
- (cd _build/default/test && ./test.exe)
- Testing `test'.
- This run has ID `34W2ALPS'.
- 
-   [OK]          pipelines            0   v1.
-   [OK]          pipelines            1   v1-cancel.
-   [OK]          pipelines            2   v2.
-   [OK]          pipelines            3   v3.
-   [OK]          pipelines            4   v4.
-   [OK]          pipelines            5   v5.
-   [OK]          pipelines            6   v5-nil.
-   [OK]          pipelines            7   option-some.
-   [OK]          pipelines            8   option-none.
-   [OK]          pipelines            9   state.
-   [OK]          pipelines           10   pair.
-   [OK]          pipelines           11   latch.
-   [OK]          pipelines           12   context.
-   [OK]          terms                0   all_labelled.
-   [OK]          terms                1   metadata.
-   [OK]          terms                2   observe.
-   [OK]          cache                0   basic.
-   [OK]          cache                1   expires.
-   [OK]          cache                2   autocancel.
-   [OK]          cache                3   output.
-   [OK]          cache                4   output_autocancel.
-   [OK]          cache                5   output_retry.
-   [OK]          cache                6   output_retry_new.
-   [OK]          cache                7   latched.
-   [OK]          cache                8   latched_autocancel.
-   [OK]          cache                9   clear_error.
-   [OK]          monitor              0   basic.
[ERROR] The compilation of current.0.7.2 failed at "dune build -p current -j 71 @install @runtest".

#=== ERROR while compiling current.0.7.2 ======================================#
# 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/current.0.7.2
# command              ~/.opam/opam-init/hooks/sandbox.sh build dune build -p current -j 71 @install @runtest
# exit-code            1
# env-file             ~/.opam/log/current-7-dddea1.env
# output-file          ~/.opam/log/current-7-dddea1.out
### output ###
# File "test/dune.inc", lines 1-35, characters 0-725:
#  1 | (rule
#  2 |  (targets context.1.dot
#  3 |           latch.1.dot
# ....
# 33 |           v5n.2.dot
# 34 |           v5n.3.dot)
# 35 |  (action (run ./test.exe)))
# (cd _build/default/test && ./test.exe)
# Testing `test'.
# This run has ID `34W2ALPS'.
# 
#   [OK]          pipelines            0   v1.
#   [OK]          pipelines            1   v1-cancel.
#   [OK]          pipelines            2   v2.
#   [OK]          pipelines            3   v3.
#   [OK]          pipelines            4   v4.
#   [OK]          pipelines            5   v5.
#   [OK]          pipelines            6   v5-nil.
#   [OK]          pipelines            7   option-some.
#   [OK]          pipelines            8   option-none.
#   [OK]          pipelines            9   state.
#   [OK]          pipelines           10   pair.
#   [OK]          pipelines           11   latch.
#   [OK]          pipelines           12   context.
#   [OK]          terms                0   all_labelled.
#   [OK]          terms                1   metadata.
#   [OK]          terms                2   observe.
#   [OK]          cache                0   basic.
#   [OK]          cache                1   expires.
#   [OK]          cache                2   autocancel.
#   [OK]          cache                3   output.
#   [OK]          cache                4   output_autocancel.
#   [OK]          cache                5   output_retry.
#   [OK]          cache                6   output_retry_new.
#   [OK]          cache                7   latched.
#   [OK]          cache                8   latched_autocancel.
#   [OK]          cache                9   clear_error.
#   [OK]          monitor              0   basic.



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