Build:
  1. 0
2026-04-18 09:24.52: New job: test charrua-client.1.5.0 with duration.0.3.1, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29735/head (d2994e251ba9715f6918de9964575588ce23b570)
                              on debian-13-ocaml-4.14/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/29735/head" && git reset --hard d2994e25
git fetch origin master
git merge --no-edit d78d992b37e877fcbf807cdf22e0013f4b79b8fb
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:ec5999d94ff5da2754b2d163583ef868ccaefbaaabbe66412fde8712ae6f5126
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 duration.0.3.1 0.3.1
RUN opam reinstall duration.0.3.1; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'duration.0.3.1' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall charrua-client.1.5.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" != 'charrua-client.1.5.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 charrua-client.1.5.0) || true
RUN opam reinstall --with-test --verbose charrua-client.1.5.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" != 'charrua-client.1.5.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1

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

2026-04-18 09:24.52: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:ec5999d94ff5da2754b2d163583ef868ccaefbaaabbe66412fde8712ae6f5126-duration.0.3.1-charrua-client.1.5.0-d2994e251ba9715f6918de9964575588ce23b570"
2026-04-18 09:24.52: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:ec5999d94ff5da2754b2d163583ef868ccaefbaaabbe66412fde8712ae6f5126)
 (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 duration.0.3.1 0.3.1"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall duration.0.3.1;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"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\" != 'duration.0.3.1' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall charrua-client.1.5.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\" != 'charrua-client.1.5.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 charrua-client.1.5.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose charrua-client.1.5.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\" != 'charrua-client.1.5.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-04-18 09:24.52: Waiting for resource in pool OCluster
2026-04-18 09:36.36: Waiting for worker…
2026-04-18 09:38.39: Got resource from pool OCluster
Building on toxis.caelum.ci.dev
All commits already cached
Updating files:  66% (12393/18764)
Updating files:  67% (12572/18764)
Updating files:  68% (12760/18764)
Updating files:  69% (12948/18764)
Updating files:  70% (13135/18764)
Updating files:  71% (13323/18764)
Updating files:  72% (13511/18764)
Updating files:  73% (13698/18764)
Updating files:  74% (13886/18764)
Updating files:  75% (14073/18764)
Updating files:  76% (14261/18764)
Updating files:  77% (14449/18764)
Updating files:  78% (14636/18764)
Updating files:  79% (14824/18764)
Updating files:  80% (15012/18764)
Updating files:  81% (15199/18764)
Updating files:  82% (15387/18764)
Updating files:  83% (15575/18764)
Updating files:  84% (15762/18764)
Updating files:  85% (15950/18764)
Updating files:  86% (16138/18764)
Updating files:  87% (16325/18764)
Updating files:  88% (16513/18764)
Updating files:  89% (16700/18764)
Updating files:  90% (16888/18764)
Updating files:  91% (17076/18764)
Updating files:  92% (17263/18764)
Updating files:  93% (17451/18764)
Updating files:  94% (17639/18764)
Updating files:  95% (17826/18764)
Updating files:  96% (18014/18764)
Updating files:  97% (18202/18764)
Updating files:  98% (18389/18764)
Updating files:  99% (18577/18764)
Updating files: 100% (18764/18764)
Updating files: 100% (18764/18764), done.
HEAD is now at d78d992b37 Merge pull request #29739 from janestreet/core.v0.17.2-available-arch-arm32
Merge made by the 'ort' strategy.
 packages/duration/duration.0.3.1/opam | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)
 create mode 100644 packages/duration/duration.0.3.1/opam

(from ocaml/opam:debian-13-ocaml-4.14@sha256:ec5999d94ff5da2754b2d163583ef868ccaefbaaabbe66412fde8712ae6f5126)
2026-04-18 09:39.00 ---> using "d0e330c08fa445d83f06df86dbe749aac73c20b9c3be340824d01a143f189b82" from cache

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-04-18 09:39.00 ---> using "3ec7ac935151f5277a236626f366bf7f6f18395cb01e6e86eff2abeffc750f69" from cache

/home/opam: (run (network host)
                 (shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
  - you won't be able to use mercurial repositories unless you install the hg command on your system.
  - you won't be able to use darcs repositories unless you install the darcs command on your system.

This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.

Continue? [Y/n] y
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-04-18 09:39.00 ---> using "b5a0847c35501fd963cedc3388b00c999e5617a9db85df5529c240a6fc10a617" from cache

/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version         2.5.0
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=debian os-version=13
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 71
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       4.14
# invariant            ["ocaml-base-compiler" {= "4.14.3"}]
# compiler-packages    ocaml-base-compiler.4.14.3, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       4.14.3
2026-04-18 09:39.00 ---> using "28464b62e165a839b63b1c2ae024a4b4fcbe23c1802c3adf881d35db6bc1d4c2" from cache

/home/opam: (env OPAMDOWNLOADJOBS 1)

/home/opam: (env OPAMERRLOGLEN 0)

/home/opam: (env OPAMPRECISETRACKING 1)

/home/opam: (env CI true)

/home/opam: (env OPAM_REPO_CI true)

/home/opam: (run (shell "rm -rf opam-repository/"))
2026-04-18 09:39.00 ---> using "4dfd69403557bd9c8ecec7a8b2fdd9b50feea12943fd8b9150cd347ede8d5f38" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-04-18 09:39.02 ---> using "759507880501226b3a4a06faff283e6ff3e281c32469c857034064b70d2a1b8d" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
default (at file:///home/opam/opam-repository): 
    [WARNING] opam is out-of-date. Please consider updating it (https://opam.ocaml.org/doc/Install.html)

default (at file:///home/opam/opam-repository): 
    [INFO] opam 2.5.1 includes security fixes; please consider upgrading (https://opam.ocaml.org/doc/Install.html)

2026-04-18 09:39.02 ---> using "a0d3d38fb4e77cd27330ca20b716a51e767214189f7fcb5911d3beba5a04c3a5" from cache

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian trixie InRelease
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [124 kB]
- Fetched 214 kB in 0s (2344 kB/s)
- Reading package lists...
2026-04-18 09:39.02 ---> using "4104ada0674f169fcb1459f7b80daa558383dd9b998929b5289b2dc1d57e4bb5" from cache

/home/opam: (run (shell "opam pin add -k version -yn duration.0.3.1 0.3.1"))
duration is now pinned to version 0.3.1
2026-04-18 09:39.02 ---> using "724c4ab40512f79792175af0d7f52dc3d5ee38cd4e698f1dd5a7f619d7f0f26e" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall duration.0.3.1;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"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\" != 'duration.0.3.1' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
duration.0.3.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 2 packages
  - install dune     3.22.2         [required by duration]
  - install duration 0.3.1 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.22.2  (cached)
-> retrieved duration.0.3.1  (cached)
-> installed dune.3.22.2
-> installed duration.0.3.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-18 09:39.02 ---> using "de0cd7c089d1242dd17c16666c5ea041173fbf19beb029312729d4310651e915" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall charrua-client.1.5.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\" != 'charrua-client.1.5.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
charrua-client.1.5.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 48 packages
  - install arp                 3.1.1              [required by charrua-client]
  - install base                v0.16.4            [required by ppx_sexp_conv]
  - install base-bytes          base               [required by ocplib-endian]
  - install charrua             1.5.0              [required by charrua-client]
  - install charrua-client      1.5.0
  - install cmdliner            2.1.0              [required by tcpip]
  - install cppo                1.8.0              [required by lwt]
  - install csexp               1.5.2              [required by dune-configurator]
  - install cstruct             6.2.0              [required by charrua-client]
  - install cstruct-lwt         6.2.0              [required by tcpip]
  - install domain-name         0.5.0              [required by ipaddr]
  - install dune-configurator   3.22.2             [required by lwt, base]
  - install ethernet            3.2.0              [required by charrua-client]
  - install fmt                 0.11.0             [required by charrua-client]
  - install ipaddr              5.6.2              [required by charrua-client]
  - install ipaddr-cstruct      5.6.2              [required by tcpip]
  - install ipaddr-sexp         5.6.2              [required by charrua]
  - install logs                0.10.0             [required by charrua-client]
  - install lru                 0.3.1              [required by tcpip]
  - install lwt                 6.1.1              [required by charrua-client]
  - install lwt-dllist          1.1.0              [required by tcpip]
  - install macaddr             5.6.2              [required by charrua-client]
  - install macaddr-cstruct     5.6.2              [required by tcpip]
  - install macaddr-sexp        5.6.2              [required by charrua]
  - install metrics             0.5.0              [required by tcpip]
  - install mirage-clock        4.2.0              [required by charrua-client]
  - install mirage-flow         5.0.0              [required by tcpip]
  - install mirage-net          4.0.0              [required by charrua-client]
  - install mirage-random       3.0.0 (deprecated) [required by charrua-client]
  - install mirage-time         3.0.0              [required by charrua-client]
  - install num                 1.6                [required by sexplib]
  - install ocaml-compiler-libs v0.12.4            [required by ppxlib]
  - install ocamlbuild          0.16.1             [required by fmt, logs]
  - install ocamlfind           1.9.8              [required by fmt, logs]
  - install ocplib-endian       1.2                [required by lwt]
  - install parsexp             v0.16.0            [required by sexplib]
  - install ppx_cstruct         6.2.0              [required by charrua]
  - install ppx_derivers        1.2.1              [required by ppxlib]
  - install ppx_sexp_conv       v0.16.0            [required by charrua]
  - install ppxlib              0.35.0             [required by ppx_cstruct]
  - install psq                 0.2.1              [required by lru]
  - install randomconv          0.1.3              [required by tcpip]
  - install seq                 base               [required by psq]
  - install sexplib             v0.16.0            [required by charrua]
  - install sexplib0            v0.16.0            [required by ipaddr-sexp, macaddr-sexp]
  - install stdlib-shims        0.3.0              [required by ppxlib]
  - install tcpip               8.1.0              [required by charrua-client]
  - install topkg               1.1.1              [required by fmt, logs]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved arp.3.1.1  (cached)
-> retrieved base.v0.16.4  (cached)
-> retrieved charrua.1.5.0, charrua-client.1.5.0  (cached)
-> retrieved cmdliner.2.1.0  (cached)
-> retrieved cppo.1.8.0  (cached)
-> retrieved csexp.1.5.2  (cached)
-> retrieved cstruct.6.2.0, cstruct-lwt.6.2.0, ppx_cstruct.6.2.0  (cached)
-> retrieved domain-name.0.5.0  (cached)
-> installed csexp.1.5.2
-> installed domain-name.0.5.0
-> installed cppo.1.8.0
-> retrieved dune-configurator.3.22.2  (cached)
-> retrieved ethernet.3.2.0  (cached)
-> retrieved fmt.0.11.0  (cached)
-> retrieved ipaddr.5.6.2, ipaddr-cstruct.5.6.2, ipaddr-sexp.5.6.2, macaddr.5.6.2, macaddr-cstruct.5.6.2, macaddr-sexp.5.6.2  (cached)
-> retrieved logs.0.10.0  (cached)
-> retrieved lru.0.3.1  (cached)
-> retrieved lwt.6.1.1  (cached)
-> retrieved lwt-dllist.1.1.0  (cached)
-> retrieved metrics.0.5.0  (cached)
-> retrieved mirage-clock.4.2.0  (cached)
-> retrieved mirage-flow.5.0.0  (cached)
-> retrieved mirage-net.4.0.0  (cached)
-> retrieved mirage-random.3.0.0  (cached)
-> retrieved mirage-time.3.0.0  (cached)
-> retrieved num.1.6  (cached)
-> retrieved ocaml-compiler-libs.v0.12.4  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> installed macaddr.5.6.2
-> installed lwt-dllist.1.1.0
-> installed mirage-clock.4.2.0
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ocplib-endian.1.2  (cached)
-> retrieved parsexp.v0.16.0  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppx_sexp_conv.v0.16.0  (cached)
-> retrieved ppxlib.0.35.0  (cached)
-> retrieved psq.0.2.1  (cached)
-> retrieved randomconv.0.1.3  (cached)
-> retrieved seq.base  (cached)
-> retrieved sexplib.v0.16.0  (cached)
-> retrieved sexplib0.v0.16.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved tcpip.8.1.0  (cached)
-> installed cmdliner.2.1.0
-> installed dune-configurator.3.22.2
-> installed ipaddr.5.6.2
-> installed ocaml-compiler-libs.v0.12.4
-> installed ppx_derivers.1.2.1
-> installed seq.base
-> installed num.1.6
-> installed stdlib-shims.0.3.0
-> retrieved topkg.1.1.1  (cached)
-> installed sexplib0.v0.16.0
-> installed psq.0.2.1
-> installed lru.0.3.1
-> installed parsexp.v0.16.0
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed ocplib-endian.1.2
-> installed sexplib.v0.16.0
-> installed ocamlbuild.0.16.1
-> installed lwt.6.1.1
-> installed mirage-time.3.0.0
-> installed base.v0.16.4
-> installed topkg.1.1.1
-> installed fmt.0.11.0
-> installed metrics.0.5.0
-> installed cstruct.6.2.0
-> installed cstruct-lwt.6.2.0
-> installed ipaddr-cstruct.5.6.2
-> installed macaddr-cstruct.5.6.2
-> installed mirage-flow.5.0.0
-> installed mirage-net.4.0.0
-> installed mirage-random.3.0.0
-> installed randomconv.0.1.3
-> installed logs.0.10.0
-> installed ethernet.3.2.0
-> installed arp.3.1.1
-> installed tcpip.8.1.0
-> installed ppxlib.0.35.0
-> installed ppx_cstruct.6.2.0
-> installed ppx_sexp_conv.v0.16.0
-> installed ipaddr-sexp.5.6.2
-> installed macaddr-sexp.5.6.2
-> installed charrua.1.5.0
-> installed charrua-client.1.5.0
Done.

<><> 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)
2026-04-18 09:40.09 ---> saved as "185db0c1c097b20567af68ae7f37d9ba6486dc8c437d5cd89dd3b8aeda4b7a0c"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test charrua-client.1.5.0) || true"))
  * Missing dependency:
    - charrua-client < 1.6.0 -> mirage-random-test
    unknown package

No solution found, exiting
2026-04-18 09:40.20 ---> saved as "9f868eded0016ade159081fd0ec595fcf4240bfa1867befef852df378a2ad593"

/home/opam: (run (shell  "opam reinstall --with-test --verbose charrua-client.1.5.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\" != 'charrua-client.1.5.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
  * Missing dependency:
    - charrua-client < 1.6.0 -> mirage-random-test
    unknown package

No solution found, exiting
'opam reinstall --with-test --verbose charrua-client.1.5.0' failed.
"/usr/bin/env" "bash" "-c" "opam reinstall --with-test --verbose charrua-client.1.5.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" != 'charrua-client.1.5.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 20
2026-04-18 09:41.24: Job failed: Failed: Build failed
2026-04-18 09:41.24: Log analysis:
2026-04-18 09:41.24: >>> 
No solution found, exiting
 (score = 100)
2026-04-18 09:41.24: >>> 
No solution found, exiting
 (score = 100)
2026-04-18 09:41.24: [SKIP] Package not available