(not at the head of any monitored branch or PR)
2025-11-10 14:41.57: New job: test spoke.0.0.3 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 spoke.0.0.3; \
    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" != 'spoke.0.0.3' && 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 spoke.0.0.3) || true
RUN opam reinstall --with-test --verbose spoke.0.0.3; \
    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" != 'spoke.0.0.3' && 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-spoke.0.0.3-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 spoke.0.0.3;\
             \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\" != 'spoke.0.0.3' && 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 spoke.0.0.3) || true"))
 (run (shell  "opam reinstall --with-test --verbose spoke.0.0.3;\
             \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\" != 'spoke.0.0.3' && 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:09.12: Waiting for worker…
2025-11-10 15:13.36: Got resource from pool OCluster
Building on laodoke.caelum.ci.dev
All commits already cached
Updating files:  66% (12361/18704)
Updating files:  67% (12532/18704)
Updating files:  68% (12719/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:13.59 ---> 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:13.59 ---> 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:13.59 ---> 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:13.59 ---> 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:13.59 ---> using "d7d7d34009e7cd5bb4f41663ceab70bbd4c419269902dabc72ab91552d36d91d" from cache

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

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-11-10 15:14.01 ---> 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:14.01 ---> 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:14.01 ---> 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:14.01 ---> using "7d19709798d6b95bd061256c354546cbc3e2d2fc97783c602cc38b64a7b8afa1" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall spoke.0.0.3;\
                        \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\" != 'spoke.0.0.3' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
spoke.0.0.3 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 19 packages
  - install angstrom           0.16.1 [required by encore]
  - install base64             3.5.2  [required by spoke]
  - install bigstringaf        0.10.0 [required by spoke]
  - install cmdliner           2.0.0  [required by hxd, logs]
  - install cstruct            6.2.0  [required by mirage-crypto, mirage-flow]
  - install digestif           1.3.0  [required by spoke]
  - install encore             0.8.1  [required by spoke]
  - install eqaf               0.9    [required by digestif, mirage-crypto]
  - install fmt                0.11.0 [required by spoke]
  - install hxd                0.3.5  [required by spoke]
  - install ke                 0.6    [required by spoke]
  - install logs               0.10.0 [required by spoke]
  - install mirage-crypto      0.11.3 [required by spoke]
  - install mirage-flow        5.0.0  [required by spoke]
  - install ocaml-syntax-shims 1.0.0  [required by angstrom]
  - install ocamlbuild         0.16.1 [required by logs]
  - install result             1.5    [required by spoke]
  - install spoke              0.0.3
  - install topkg              1.1.1  [required by logs]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved angstrom.0.16.1  (cached)
-> retrieved base64.3.5.2  (cached)
-> retrieved bigstringaf.0.10.0  (cached)
-> retrieved cmdliner.2.0.0  (cached)
-> retrieved cstruct.6.2.0  (cached)
-> installed base64.3.5.2
-> installed bigstringaf.0.10.0
-> retrieved digestif.1.3.0  (cached)
-> retrieved encore.0.8.1  (cached)
-> retrieved eqaf.0.9  (cached)
-> retrieved fmt.0.11.0  (cached)
-> retrieved hxd.0.3.5  (cached)
-> retrieved ke.0.6  (cached)
-> retrieved logs.0.10.0  (cached)
-> retrieved mirage-crypto.0.11.3  (cached)
-> retrieved mirage-flow.5.0.0  (cached)
-> retrieved ocaml-syntax-shims.1.0.0  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved result.1.5  (cached)
-> retrieved spoke.0.0.3  (https://opam.ocaml.org/cache)
-> retrieved topkg.1.1.1  (cached)
-> installed result.1.5
-> installed ocaml-syntax-shims.1.0.0
-> installed angstrom.0.16.1
-> installed cmdliner.2.0.0
-> installed hxd.0.3.5
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed fmt.0.11.0
-> installed encore.0.8.1
-> installed ke.0.6
-> installed cstruct.6.2.0
-> installed mirage-flow.5.0.0
-> installed logs.0.10.0
-> installed eqaf.0.9
-> installed digestif.1.3.0
-> installed mirage-crypto.0.11.3
-> installed spoke.0.0.3
Done.
# To update the current shell environment, run: eval $(opam env)
2025-11-10 15:14.53 ---> saved as "40edafce0608b0e827000d2f17a6f3dca6938af82f29d94c034552ea2e4b35e0"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test spoke.0.0.3) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile spoke           0.0.3
=== install 22 packages
  - install   arp             3.1.1              [required by tcpip]
  - install   cstruct-lwt     6.2.0              [required by tcpip]
  - install   domain-name     0.5.0              [required by ipaddr]
  - install   duration        0.2.1              [required by tcpip]
  - install   ethernet        3.2.0              [required by tcpip]
  - install   ipaddr          5.6.1              [required by tcpip]
  - install   ipaddr-cstruct  5.6.1              [required by tcpip]
  - install   lru             0.3.1              [required by tcpip]
  - install   lwt-dllist      1.1.0              [required by tcpip]
  - install   macaddr         5.6.1              [required by tcpip]
  - install   macaddr-cstruct 5.6.1              [required by tcpip]
  - install   metrics         0.5.0              [required by tcpip]
  - install   mimic           0.0.9              [required by spoke]
  - install   mirage-clock    4.2.0              [required by tcpip]
  - install   mirage-net      4.0.0              [required by tcpip]
  - install   mirage-random   3.0.0 (deprecated) [required by tcpip]
  - install   mirage-time     3.0.0              [required by tcpip]
  - install   psq             0.2.1              [required by lru]
  - install   randomconv      0.1.3              [required by tcpip]
  - install   rresult         0.7.0              [required by spoke]
  - install   seq             base               [required by psq]
  - install   tcpip           8.1.0              [required by spoke]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved arp.3.1.1  (https://opam.ocaml.org/cache)
-> retrieved cstruct-lwt.6.2.0  (https://opam.ocaml.org/cache)
-> retrieved domain-name.0.5.0  (https://opam.ocaml.org/cache)
-> retrieved duration.0.2.1  (https://opam.ocaml.org/cache)
-> retrieved ethernet.3.2.0  (https://opam.ocaml.org/cache)
-> installed cstruct-lwt.6.2.0
-> retrieved ipaddr.5.6.1, ipaddr-cstruct.5.6.1, macaddr.5.6.1, macaddr-cstruct.5.6.1  (https://opam.ocaml.org/cache)
-> installed domain-name.0.5.0
-> retrieved lru.0.3.1  (https://opam.ocaml.org/cache)
-> retrieved lwt-dllist.1.1.0  (https://opam.ocaml.org/cache)
-> installed duration.0.2.1
-> retrieved metrics.0.5.0  (https://opam.ocaml.org/cache)
-> installed macaddr.5.6.1
-> retrieved mimic.0.0.9  (https://opam.ocaml.org/cache)
-> installed lwt-dllist.1.1.0
-> retrieved mirage-clock.4.2.0  (https://opam.ocaml.org/cache)
-> retrieved mirage-net.4.0.0  (https://opam.ocaml.org/cache)
-> retrieved mirage-random.3.0.0  (https://opam.ocaml.org/cache)
-> retrieved mirage-time.3.0.0  (https://opam.ocaml.org/cache)
-> installed macaddr-cstruct.5.6.1
-> installed mirage-clock.4.2.0
-> retrieved psq.0.2.1  (https://opam.ocaml.org/cache)
-> installed mirage-net.4.0.0
-> installed mirage-random.3.0.0
-> installed mirage-time.3.0.0
-> retrieved randomconv.0.1.3  (https://opam.ocaml.org/cache)
-> installed metrics.0.5.0
-> retrieved rresult.0.7.0  (https://opam.ocaml.org/cache)
-> installed mimic.0.0.9
-> retrieved seq.base  (2 extra sources)
-> retrieved seq.base  (2 extra sources)
-> installed seq.base
-> installed randomconv.0.1.3
-> installed ethernet.3.2.0
-> retrieved spoke.0.0.3  (https://opam.ocaml.org/cache)
-> installed ipaddr.5.6.1
-> retrieved tcpip.8.1.0  (https://opam.ocaml.org/cache)
-> installed ipaddr-cstruct.5.6.1
-> installed psq.0.2.1
-> removed   spoke.0.0.3
-> installed rresult.0.7.0
-> installed arp.3.1.1
-> installed lru.0.3.1
-> installed tcpip.8.1.0
[ERROR] The compilation of spoke.0.0.3 failed at "dune runtest -p spoke -j 71".

#=== ERROR while compiling spoke.0.0.3 ========================================#
# 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/spoke.0.0.3
# command              ~/.opam/opam-init/hooks/sandbox.sh build dune runtest -p spoke -j 71
# exit-code            1
# env-file             ~/.opam/log/spoke-7-1e1ffc.env
# output-file          ~/.opam/log/spoke-7-1e1ffc.out
### output ###
# File "test/simulate.t", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u _build/default/test/simulate.t _build/default/test/simulate.t.corrected
# diff --git a/_build/default/test/simulate.t b/_build/default/test/simulate.t.corrected
# index 4aed4d1..2062564 100644
# --- a/_build/default/test/simulate.t
# +++ b/_build/default/test/simulate.t.corrected
# @@ -1,3 +1,5 @@
#  Simulate communication with Spoke
#    $ echo "Hello World!" > hello
#    $ ../bin/simulate.exe hello 127.0.0.1:4242 hello-world
# +  Segmentation fault
# +  [139]



<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions failed
| - build spoke 0.0.3
+- 
+- The following changes have been performed
| - remove  spoke           0.0.3
| - install arp             3.1.1
| - install cstruct-lwt     6.2.0
| - install domain-name     0.5.0
| - install duration        0.2.1
| - install ethernet        3.2.0
| - install ipaddr          5.6.1
| - install ipaddr-cstruct  5.6.1
| - install lru             0.3.1
| - install lwt-dllist      1.1.0
| - install macaddr         5.6.1
| - install macaddr-cstruct 5.6.1
| - install metrics         0.5.0
| - install mimic           0.0.9
| - install mirage-clock    4.2.0
| - install mirage-net      4.0.0
| - install mirage-random   3.0.0
| - install mirage-time     3.0.0
| - install psq             0.2.1
| - install randomconv      0.1.3
| - install rresult         0.7.0
| - install seq             base
| - install tcpip           8.1.0
+- 

<><> mirage-random.3.0.0 installed successfully <><><><><><><><><><><><><><><><>
=> Note: This package is deprecated.
=> mirage-random is deprecated
# 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-20251110151454.export"
Or you can retry to install your package selection with:
    /usr/bin/opam install --restore
2025-11-10 15:15.18 ---> saved as "22f2208d3d95146850126d5b2605fee35adb9f196a1cad9acff208402ffa26c9"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/3: [spoke.0.0.3: extract]
-> retrieved spoke.0.0.3  (cached)
Processing  2/3: [spoke: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "spoke" "-j" "71" (CWD=/home/opam/.opam/5.4/.opam-switch/build/spoke.0.0.3)
Processing  2/3: [spoke: dune runtest]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "spoke" "-j" "71" (CWD=/home/opam/.opam/5.4/.opam-switch/build/spoke.0.0.3)
[ERROR] The compilation of spoke.0.0.3 failed at "dune runtest -p spoke -j 71".

#=== ERROR while compiling spoke.0.0.3 ========================================#
# 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/spoke.0.0.3
# command              ~/.opam/opam-init/hooks/sandbox.sh build dune runtest -p spoke -j 71
# exit-code            1
# env-file             ~/.opam/log/spoke-6-2ccb82.env
# output-file          ~/.opam/log/spoke-6-2ccb82.out
### output ###
# File "test/simulate.t", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u _build/default/test/simulate.t _build/default/test/simulate.t.corrected
# diff --git a/_build/default/test/simulate.t b/_build/default/test/simulate.t.corrected
# index 4aed4d1..2062564 100644
# --- a/_build/default/test/simulate.t
# +++ b/_build/default/test/simulate.t.corrected
# @@ -1,3 +1,5 @@
#  Simulate communication with Spoke
#    $ echo "Hello World!" > hello
#    $ ../bin/simulate.exe hello 127.0.0.1:4242 hello-world
# +  Segmentation fault
# +  [139]

- File "test/simulate.t", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u _build/default/test/simulate.t _build/default/test/simulate.t.corrected
- diff --git a/_build/default/test/simulate.t b/_build/default/test/simulate.t.corrected
- index 4aed4d1..2062564 100644
- --- a/_build/default/test/simulate.t
- +++ b/_build/default/test/simulate.t.corrected
- @@ -1,3 +1,5 @@
-  Simulate communication with Spoke
-    $ echo "Hello World!" > hello
-    $ ../bin/simulate.exe hello 127.0.0.1:4242 hello-world
- +  Segmentation fault
- +  [139]


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