Build:
  1. 0
2026-04-22 19:51.37: New job: test carbon.0.1.0 with digestif.1.3.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29791/head (d9cabb4c55a3783be3e85ea4b8aa97d9d5c13ab5)
                              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/29791/head" && git reset --hard d9cabb4c
git fetch origin master
git merge --no-edit 80ba534fc64fc4e0dec42047f5b25e1207407794
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:bf89bb8b0840f9e6d96c6319caca58b5a9cb053dc6ba317d449ef09a67ea4117
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 digestif.1.3.0 1.3.0
RUN opam reinstall digestif.1.3.0; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'digestif.1.3.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall carbon.0.1.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" != 'carbon.0.1.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 carbon.0.1.0) || true
RUN opam reinstall --with-test --verbose carbon.0.1.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" != 'carbon.0.1.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-22 19:51.37: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:bf89bb8b0840f9e6d96c6319caca58b5a9cb053dc6ba317d449ef09a67ea4117-digestif.1.3.0-carbon.0.1.0-d9cabb4c55a3783be3e85ea4b8aa97d9d5c13ab5"
2026-04-22 19:51.37: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:bf89bb8b0840f9e6d96c6319caca58b5a9cb053dc6ba317d449ef09a67ea4117)
 (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 digestif.1.3.0 1.3.0"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall digestif.1.3.0;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'digestif.1.3.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall carbon.0.1.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\" != 'carbon.0.1.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 carbon.0.1.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose carbon.0.1.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\" != 'carbon.0.1.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-22 19:51.37: Waiting for resource in pool OCluster
2026-04-22 22:43.53: Waiting for worker…
2026-04-22 22:46.19: Got resource from pool OCluster
Building on asteria.caelum.ci.dev
All commits already cached
HEAD is now at 80ba534fc6 Merge pull request #29786 from samoht/release-wire-0.9.0
Updating 80ba534fc6..d9cabb4c55
Fast-forward
 .../bigarray-overlap/bigarray-overlap.0.1.0/opam   |  2 +-
 .../bigarray-overlap/bigarray-overlap.0.2.0/opam   |  2 +-
 .../bigarray-overlap/bigarray-overlap.0.2.1/opam   |  2 +-
 packages/bos/bos.0.3.0/opam                        | 52 ++++++++++++++++++++++
 .../camlp5-buildscripts.0.06/opam                  |  2 +-
 packages/checkseum/checkseum.0.2.1/opam            |  2 +-
 packages/checkseum/checkseum.0.3.1/opam            |  2 +-
 packages/checkseum/checkseum.0.3.2/opam            |  2 +-
 packages/checkseum/checkseum.0.3.3/opam            |  2 +-
 packages/checkseum/checkseum.0.3.4/opam            |  2 +-
 packages/checkseum/checkseum.0.4.0/opam            |  2 +-
 packages/checkseum/checkseum.0.5.1/opam            |  2 +-
 packages/checkseum/checkseum.0.5.2/opam            |  2 +-
 packages/checkseum/checkseum.0.5.3/opam            |  2 +-
 packages/digestif/digestif.0.9.0/opam              |  2 +-
 packages/digestif/digestif.1.1.2/opam              |  2 +-
 packages/digestif/digestif.1.3.0/opam              |  2 +-
 packages/dkml-install/dkml-install.0.1.0/opam      |  2 +-
 packages/dkml-workflows/dkml-workflows.1.2.0/opam  |  2 +-
 packages/minima-theme/minima-theme.1.0.0/opam      |  2 +-
 packages/opam-compiler/opam-compiler.0.1.0/opam    |  2 +-
 packages/opam-compiler/opam-compiler.0.1.1/opam    |  2 +-
 packages/opam-compiler/opam-compiler.0.2.0/opam    |  2 +-
 packages/opam-compiler/opam-compiler.0.2.1/opam    |  2 +-
 packages/smtml/smtml.0.20.0/opam                   |  2 +-
 packages/smtml/smtml.0.21.0/opam                   |  2 +-
 packages/smtml/smtml.0.22.0/opam                   |  2 +-
 packages/smtml/smtml.0.23.0/opam                   |  2 +-
 packages/smtml/smtml.0.24.0/opam                   |  2 +-
 packages/smtml/smtml.0.25.0/opam                   |  2 +-
 packages/vif/vif.0.0.1~beta1/opam                  |  2 +-
 packages/vif/vif.0.0.1~beta2/opam                  |  2 +-
 packages/waylaunch/waylaunch.0.1.0/opam            |  2 +-
 packages/yaml-sexp/yaml-sexp.3.0.1/opam            |  2 +-
 packages/yaml-sexp/yaml-sexp.3.1.0/opam            |  2 +-
 packages/yaml/yaml.3.0.1/opam                      |  2 +-
 packages/yaml/yaml.3.1.0/opam                      |  2 +-
 37 files changed, 88 insertions(+), 36 deletions(-)
 create mode 100644 packages/bos/bos.0.3.0/opam

(from ocaml/opam:debian-13-ocaml-5.4@sha256:bf89bb8b0840f9e6d96c6319caca58b5a9cb053dc6ba317d449ef09a67ea4117)
2026-04-22 23:07.21 ---> using "87b761d57f8bd11e681423bdf4eccf2ad5197c80c37c136b18e55ecadd1dcf8e" 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-22 23:07.21 ---> using "811e645634c51bf2e36df44395bb5058f5ddc991c075f1dce25e0130d9d6d58a" 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
[NOTE] The 'jobs' option was reset, its value was 71 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
           opam option jobs=71 --global
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-04-22 23:07.21 ---> using "ad9b8f4e23eb86d9ca2620a99c2ac3e22ad117638526b53e60830a1fc5247967" 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.1
# 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                 255
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       5.4
# invariant            ["ocaml-base-compiler" {= "5.4.1"}]
# compiler-packages    ocaml-base-compiler.5.4.1, ocaml-compiler.5.4.1, 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.1
2026-04-22 23:07.21 ---> using "fa610c5b6cf010ca5267c81f982d823a8d07ca0993da68330dadec514fa4ddca" 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-22 23:07.21 ---> using "77bd01109261a815e94dbab189bedbba1e2cc45f00af65b780c95f4595a515d9" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-04-22 23:07.22 ---> using "694420a19ecb3760b3075c1dd39d249d4f7b8fccb790cc82d5309765548b7ab0" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-22 23:07.22 ---> using "752dae9fa801686afbeeb097a5252a053865923be226491a044b7d8bc850214b" 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 [127 kB]
- Fetched 217 kB in 0s (1897 kB/s)
- Reading package lists...
2026-04-22 23:07.22 ---> using "550af129f8175506134abe27a3947eeb33545cb9b9118a51b438c643ac59117c" from cache

/home/opam: (run (shell "opam pin add -k version -yn digestif.1.3.0 1.3.0"))
digestif is now pinned to version 1.3.0
2026-04-22 23:07.22 ---> using "13fafcece96bcd45704c55cef1a00e20fa9729e317dfe8c7d1bc23d38592e9b6" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall digestif.1.3.0;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'digestif.1.3.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
digestif.1.3.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 3 packages
  - install digestif 1.3.0 (pinned)
  - install dune     3.22.2         [required by digestif]
  - install eqaf     0.10           [required by digestif]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved digestif.1.3.0  (cached)
-> retrieved dune.3.22.2  (cached)
-> retrieved eqaf.0.10  (cached)
-> installed dune.3.22.2
-> installed eqaf.0.10
-> installed digestif.1.3.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-22 23:07.22 ---> using "bbbf7cac331eba786091e87f6dc9e160cc93e1c6b1af92e11035a68d4a0d6887" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall carbon.0.1.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\" != 'carbon.0.1.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
carbon.0.1.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== downgrade 1 package
  - downgrade eqaf               0.10 to 0.9        [uses cstruct]
=== recompile 1 package
  - recompile digestif           1.3.0 (pinned)     [uses eqaf]
=== install 51 packages
  - install   angstrom           0.16.1             [required by uri]
  - install   asn1-combinators   0.2.6              [required by x509]
  - install   base64             3.5.2              [required by x509]
  - install   bigstringaf        0.10.0             [required by eio, angstrom]
  - install   carbon             0.1.0
  - install   cohttp-eio         6.0.0~alpha2       [required by carbon]
  - install   conf-gmp           5                  [required by conf-gmp-powm-sec, zarith]
  - install   conf-gmp-powm-sec  4                  [required by mirage-crypto-pk]
  - install   conf-pkg-config    4                  [required by zarith]
  - install   csexp              1.5.2              [required by dune-configurator]
  - install   cstruct            6.2.0              [required by mirage-crypto-rng, eio, hex, tls]
  - install   domain-local-await 1.0.1              [required by eio]
  - install   domain-name        0.5.0              [required by tls]
  - install   dune-configurator  3.22.2             [required by mirage-crypto-rng]
  - install   duration           0.3.1              [required by mirage-crypto-rng]
  - install   eio                0.11               [required by carbon]
  - install   ezjsonm            1.3.0              [required by carbon]
  - install   fmt                0.11.0             [required by cohttp-eio]
  - install   gmap               0.3.0              [required by x509]
  - install   hex                1.5.0              [required by ezjsonm]
  - install   hkdf               1.0.4 (deprecated) [required by tls]
  - install   hmap               0.8.1              [required by eio]
  - install   http               6.0.0~alpha2       [required by cohttp-eio]
  - install   ipaddr             5.6.2              [required by tls]
  - install   jsonm              1.0.2              [required by ezjsonm]
  - install   logs               0.10.0             [required by mirage-crypto-rng, tls]
  - install   lwt-dllist         1.1.0              [required by eio]
  - install   macaddr            5.6.2              [required by ipaddr]
  - install   mirage-crypto      0.11.3             [required by mirage-crypto-rng, tls]
  - install   mirage-crypto-ec   0.11.3             [required by tls]
  - install   mirage-crypto-pk   0.11.3             [required by tls]
  - install   mirage-crypto-rng  0.11.3             [required by tls-eio]
  - install   mtime              2.1.0              [required by eio]
  - install   ocaml-syntax-shims 1.0.0              [required by angstrom]
  - install   ocamlbuild         0.16.1             [required by ptime, jsonm]
  - install   ocamlfind          1.9.8              [required by ptime, jsonm]
  - install   optint             0.3.0              [required by eio]
  - install   pbkdf              1.2.0              [required by x509]
  - install   psq                0.2.1              [required by eio]
  - install   ptime              1.2.0              [required by carbon]
  - install   seq                base               [required by psq]
  - install   sexplib0           v0.17.0            [required by ezjsonm]
  - install   stringext          1.6.0              [required by uri]
  - install   thread-table       1.0.0              [required by domain-local-await]
  - install   tls                0.17.1             [required by tls-eio]
  - install   tls-eio            0.17.1             [required by carbon]
  - install   topkg              1.1.1              [required by ptime, jsonm]
  - install   uri                4.4.0              [required by carbon]
  - install   uutf               1.0.4              [required by ezjsonm]
  - install   x509               0.16.5             [required by tls-eio]
  - install   zarith             1.14               [required by mirage-crypto-pk]

The following system packages will first need to be installed:
    libgmp-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" "libgmp-dev" "pkg-config"
- 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 ... 20654 files and directories currently installed.)
- Preparing to unpack .../0-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 .../1-libgmp-dev_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- 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 pkgconf-bin.
- Preparing to unpack .../3-pkgconf-bin_1.8.1-4_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../4-pkgconf_1.8.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../5-pkg-config_1.8.1-4_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-4) ...
- Setting up libpkgconf3:amd64 (1.8.1-4) ...
- Setting up libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Setting up pkgconf-bin (1.8.1-4) ...
- Setting up libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- 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+deb13u2) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved angstrom.0.16.1  (cached)
-> retrieved asn1-combinators.0.2.6  (cached)
-> retrieved base64.3.5.2  (cached)
-> retrieved bigstringaf.0.10.0  (cached)
-> retrieved carbon.0.1.0  (https://opam.ocaml.org/cache)
-> retrieved cohttp-eio.6.0.0~alpha2, http.6.0.0~alpha2  (https://opam.ocaml.org/cache)
-> retrieved conf-gmp.5  (cached)
-> retrieved conf-gmp-powm-sec.4  (cached)
-> installed base64.3.5.2
-> retrieved csexp.1.5.2  (cached)
-> installed conf-gmp.5
-> installed conf-pkg-config.4
-> retrieved cstruct.6.2.0  (cached)
-> retrieved domain-local-await.1.0.1  (cached)
-> installed conf-gmp-powm-sec.4
-> retrieved domain-name.0.5.0  (cached)
-> installed csexp.1.5.2
-> installed domain-name.0.5.0
-> installed http.6.0.0~alpha2
-> retrieved dune-configurator.3.22.2  (cached)
-> retrieved duration.0.3.1  (cached)
-> retrieved eio.0.11  (cached)
-> retrieved eqaf.0.9  (cached)
-> retrieved ezjsonm.1.3.0  (cached)
-> retrieved fmt.0.11.0  (cached)
-> retrieved gmap.0.3.0  (cached)
-> retrieved hex.1.5.0  (cached)
-> retrieved hkdf.1.0.4  (cached)
-> retrieved hmap.0.8.1  (cached)
-> retrieved ipaddr.5.6.2, macaddr.5.6.2  (cached)
-> retrieved jsonm.1.0.2  (cached)
-> retrieved logs.0.10.0  (cached)
-> retrieved lwt-dllist.1.1.0  (cached)
-> installed duration.0.3.1
-> installed gmap.0.3.0
-> installed macaddr.5.6.2
-> installed lwt-dllist.1.1.0
-> retrieved mirage-crypto.0.11.3, mirage-crypto-ec.0.11.3, mirage-crypto-pk.0.11.3, mirage-crypto-rng.0.11.3  (cached)
-> retrieved mtime.2.1.0  (cached)
-> retrieved ocaml-syntax-shims.1.0.0  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved optint.0.3.0  (cached)
-> installed ipaddr.5.6.2
-> retrieved pbkdf.1.2.0  (cached)
-> retrieved psq.0.2.1  (cached)
-> retrieved ptime.1.2.0  (cached)
-> retrieved seq.base  (cached)
-> installed seq.base
-> retrieved sexplib0.v0.17.0  (cached)
-> retrieved stringext.1.6.0  (cached)
-> retrieved thread-table.1.0.0  (cached)
-> retrieved tls.0.17.1, tls-eio.0.17.1  (cached)
-> retrieved topkg.1.1.1  (cached)
-> installed dune-configurator.3.22.2
-> retrieved uri.4.4.0  (cached)
-> retrieved uutf.1.0.4  (cached)
-> installed optint.0.3.0
-> retrieved x509.0.16.5  (cached)
-> installed stringext.1.6.0
-> retrieved zarith.1.14  (cached)
-> installed thread-table.1.0.0
-> installed psq.0.2.1
-> installed sexplib0.v0.17.0
-> installed domain-local-await.1.0.1
-> installed ocaml-syntax-shims.1.0.0
-> installed bigstringaf.0.10.0
-> installed angstrom.0.16.1
-> installed uri.4.4.0
-> installed ocamlfind.1.9.8
-> removed   digestif.1.3.0
-> removed   eqaf.0.10
-> installed ocamlbuild.0.16.1
-> installed zarith.1.14
-> installed topkg.1.1.1
-> installed hmap.0.8.1
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed mtime.2.1.0
-> installed ptime.1.2.0
-> installed cstruct.6.2.0
-> installed jsonm.1.0.2
-> installed hex.1.5.0
-> installed logs.0.10.0
-> installed ezjsonm.1.3.0
-> installed asn1-combinators.0.2.6
-> installed eqaf.0.9
-> installed digestif.1.3.0
-> installed eio.0.11
-> installed cohttp-eio.6.0.0~alpha2
-> installed mirage-crypto.0.11.3
-> installed hkdf.1.0.4
-> installed pbkdf.1.2.0
-> installed mirage-crypto-rng.0.11.3
-> installed mirage-crypto-pk.0.11.3
-> installed mirage-crypto-ec.0.11.3
-> installed x509.0.16.5
-> installed tls.0.17.1
-> installed tls-eio.0.17.1
-> installed carbon.0.1.0
Done.

<><> hkdf.1.0.4 installed successfully ><><><><><><><><><><><><><><><><><><><><>
=> Note: This package is deprecated.
# To update the current shell environment, run: eval $(opam env)
2026-04-22 23:07.57 ---> saved as "f3e62460a3a7b24746343226f613940f4b7cf284cfbc84cf3f79ff684fb1d219"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test carbon.0.1.0) || true"))
  * No agreement on the version of eio:
    - carbon < 0.2.0 -> mirage-crypto-rng-eio < 1.0.0 -> eio >= 0.12
    - carbon < 0.2.0 -> eio < 0.12
  * No agreement on the version of mtime:
    - carbon < 0.2.0 -> eio < 0.12 -> mtime < 2.0.0
    - carbon < 0.2.0 -> mirage-crypto-rng-eio < 1.0.0 -> eio >= 0.12 -> mtime >= 2.0.0
  * Incompatible packages:
    - (invariant) -> ocaml-base-compiler = 5.4.1
    - carbon < 0.2.0 -> eio < 0.12
    You can temporarily relax the switch invariant with `--update-invariant'

No solution found, exiting
2026-04-22 23:08.03 ---> saved as "60674024e3fe8d5f2d066fddb8a0cb2c3e662b191583ba263f562662972ddabd"

/home/opam: (run (shell  "opam reinstall --with-test --verbose carbon.0.1.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\" != 'carbon.0.1.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
  * No agreement on the version of eio:
    - carbon < 0.2.0 -> mirage-crypto-rng-eio < 1.0.0 -> eio >= 0.12
    - carbon < 0.2.0 -> eio < 0.12
  * No agreement on the version of mtime:
    - carbon < 0.2.0 -> eio < 0.12 -> mtime < 2.0.0
    - carbon < 0.2.0 -> mirage-crypto-rng-eio < 1.0.0 -> eio >= 0.12 -> mtime >= 2.0.0
  * Incompatible packages:
    - (invariant) -> ocaml-base-compiler = 5.4.1
    - carbon < 0.2.0 -> eio < 0.12
    You can temporarily relax the switch invariant with `--update-invariant'

No solution found, exiting
'opam reinstall --with-test --verbose carbon.0.1.0' failed.
"/usr/bin/env" "bash" "-c" "opam reinstall --with-test --verbose carbon.0.1.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" != 'carbon.0.1.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-22 23:08.16: Job failed: Failed: Build failed
2026-04-22 23:08.16: Log analysis:
2026-04-22 23:08.16: >>> 
No solution found, exiting
 (score = 100)
2026-04-22 23:08.16: >>> 
No solution found, exiting
 (score = 100)
2026-04-22 23:08.16: [SKIP] Package not available