(not at the head of any monitored branch or PR)
2026-03-21 18:50.21: New job: test patricia-tree.0.12.0 with conf-m4.1, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29579/head (e26ca330660bcb49f8bb8e3d37703d278be8c4bd)
                              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/29579/head" && git reset --hard e26ca330
git fetch origin master
git merge --no-edit 76bf2ed9443fdee37e6f046c6295d358be3f8598
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e
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 conf-m4.1 1
RUN opam reinstall conf-m4.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" != 'conf-m4.1' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall patricia-tree.0.12.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" != 'patricia-tree.0.12.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 patricia-tree.0.12.0) || true
RUN opam reinstall --with-test --verbose patricia-tree.0.12.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" != 'patricia-tree.0.12.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-03-21 18:50.21: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e-conf-m4.1-patricia-tree.0.12.0-e26ca330660bcb49f8bb8e3d37703d278be8c4bd"
2026-03-21 18:50.21: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e)
 (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 conf-m4.1 1"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall conf-m4.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\" != 'conf-m4.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 patricia-tree.0.12.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\" != 'patricia-tree.0.12.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 patricia-tree.0.12.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose patricia-tree.0.12.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\" != 'patricia-tree.0.12.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-03-21 18:50.21: Waiting for resource in pool OCluster
2026-03-21 21:00.50: Waiting for worker…
2026-03-21 21:02.48: Got resource from pool OCluster
Building on clete
All commits already cached
Updating files:  53% (9889/18509)
Updating files:  54% (9995/18509)
Updating files:  55% (10180/18509)
Updating files:  56% (10366/18509)
Updating files:  57% (10551/18509)
Updating files:  58% (10736/18509)
Updating files:  59% (10921/18509)
Updating files:  60% (11106/18509)
Updating files:  61% (11291/18509)
Updating files:  62% (11476/18509)
Updating files:  63% (11661/18509)
Updating files:  64% (11846/18509)
Updating files:  65% (12031/18509)
Updating files:  66% (12216/18509)
Updating files:  67% (12402/18509)
Updating files:  68% (12587/18509)
Updating files:  69% (12772/18509)
Updating files:  70% (12957/18509)
Updating files:  71% (13142/18509)
Updating files:  72% (13327/18509)
Updating files:  73% (13512/18509)
Updating files:  74% (13697/18509)
Updating files:  75% (13882/18509)
Updating files:  76% (14067/18509)
Updating files:  77% (14252/18509)
Updating files:  78% (14438/18509)
Updating files:  79% (14623/18509)
Updating files:  80% (14808/18509)
Updating files:  81% (14993/18509)
Updating files:  82% (15178/18509)
Updating files:  83% (15363/18509)
Updating files:  84% (15548/18509)
Updating files:  85% (15733/18509)
Updating files:  86% (15918/18509)
Updating files:  87% (16103/18509)
Updating files:  88% (16288/18509)
Updating files:  89% (16474/18509)
Updating files:  90% (16659/18509)
Updating files:  91% (16844/18509)
Updating files:  92% (17029/18509)
Updating files:  93% (17214/18509)
Updating files:  94% (17399/18509)
Updating files:  95% (17584/18509)
Updating files:  96% (17769/18509)
Updating files:  97% (17954/18509)
Updating files:  98% (18139/18509)
Updating files:  99% (18324/18509)
Updating files: 100% (18509/18509)
Updating files: 100% (18509/18509), done.
HEAD is now at 76bf2ed944 Merge pull request #29572 from hannesm/release-letsencrypt-v2.0.0
Updating 76bf2ed944..e26ca33066
Fast-forward
 packages/conf-findutils/conf-findutils.1/opam                       | 2 ++
 packages/conf-m4/conf-m4.1/opam                                     | 1 +
 .../conf-mingw-w64-bzip2-x86_64/conf-mingw-w64-bzip2-x86_64.1/opam  | 4 ++--
 packages/conf-mingw-w64-gcc-x86_64/conf-mingw-w64-gcc-x86_64.1/opam | 4 ++--
 packages/conf-mingw-w64-gmp-x86_64/conf-mingw-w64-gmp-x86_64.1/opam | 4 ++--
 .../conf-mingw-w64-pkgconf-x86_64.1/opam                            | 6 +++---
 .../conf-mingw-w64-zlib-x86_64/conf-mingw-w64-zlib-x86_64.1/opam    | 4 ++--
 .../conf-mingw-w64-zstd-x86_64/conf-mingw-w64-zstd-x86_64.1/opam    | 4 ++--
 packages/conf-perl/conf-perl.2/opam                                 | 1 +
 9 files changed, 17 insertions(+), 13 deletions(-)

(from ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e)
2026-03-21 21:02.57 ---> using "32cd5b5baf995c02200cf270da597dbb25becd220af2c200c00b8b241a742195" 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-03-21 21:02.57 ---> using "f3ed7bdbef828c9c0b079b10505c5f05c3c9adcca11ce5bf2dac2a4183e099d8" 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-03-21 21:02.57 ---> using "5bf6adb7b45bb7e0c215b8f509c71a8dae73a9a2060efcc27df9d4ef6c6d3350" 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.2"}]
# compiler-packages    ocaml-base-compiler.4.14.2, 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.2
2026-03-21 21:02.57 ---> using "0546f18fa5979677ee22eb9f2fcf19ab371564e845d317c2c70e41dd97dc22dd" 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-03-21 21:02.57 ---> using "0a7188cbe95f4fe0ff26694977eb8794c975bdb534078da98a06d6c7373289b4" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-03-21 21:02.59 ---> using "64b0b1c5956282be62155632b73d49a512770a013b8177e3bd97cfd5e30573f3" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-21 21:02.59 ---> using "5bbc18b187922ee43ab28303966f314ef55d58cc243daaa1a62d891c4651643d" from cache

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://deb.debian.org/debian trixie InRelease [140 kB]
- 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 trixie/main amd64 Packages [9671 kB]
- Get:5 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [113 kB]
- Fetched 10.0 MB in 24s (425 kB/s)
- Reading package lists...
- 
2026-03-21 21:02.59 ---> using "26c4cf2d2932a5613ac2db8ae671186642ac802d5db4f44c87661f5676362dec" from cache

/home/opam: (run (shell "opam pin add -k version -yn conf-m4.1 1"))
conf-m4 is now pinned to version 1
2026-03-21 21:02.59 ---> using "1f550c38f5bac1e80ecbaf30222372f1ba650bb720c00e72e38ddd72856eafa1" from cache

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

The following system packages will first need to be installed:
    m4

<><> 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" "m4"
- Selecting previously unselected package m4.
- (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 ... 20623 files and directories currently installed.)
- Preparing to unpack .../archives/m4_1.4.19-8_amd64.deb ...
- Unpacking m4 (1.4.19-8) ...
- Setting up m4 (1.4.19-8) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> installed conf-m4.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-21 21:02.59 ---> using "e0baf65572c68338ca7ad6c8769e7aeb1e3d03e85ea3541782477400153674e3" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall patricia-tree.0.12.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\" != 'patricia-tree.0.12.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
patricia-tree.0.12.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 2 packages
  - install dune          3.22.0 [required by patricia-tree]
  - install patricia-tree 0.12.0

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.22.0  (cached)
-> retrieved patricia-tree.0.12.0  (cached)
-> installed dune.3.22.0
-> installed patricia-tree.0.12.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-21 21:04.21 ---> saved as "66ab8f214d19d7cda5056e8086cba61318cd29d57936b675eae567d5252ff881"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test patricia-tree.0.12.0) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile patricia-tree       0.12.0
=== install 41 packages
  - install   astring             0.8.5   [required by mdx]
  - install   base                v0.16.4 [required by ppx_inline_test]
  - install   camlp-streams       5.0.1   [required by mdx]
  - install   cmdliner            2.1.0   [required by mdx]
  - install   cppo                1.8.0   [required by mdx]
  - install   csexp               1.5.2   [required by mdx]
  - install   dune-configurator   3.22.0  [required by base]
  - install   fmt                 0.11.0  [required by mdx]
  - install   jane-street-headers v0.16.0 [required by time_now]
  - install   jst-config          v0.16.0 [required by time_now]
  - install   logs                0.10.0  [required by mdx]
  - install   mdx                 2.5.1   [required by patricia-tree]
  - install   ocaml-compiler-libs v0.12.4 [required by ppxlib]
  - install   ocaml-version       4.0.3   [required by mdx]
  - install   ocamlbuild          0.16.1  [required by fmt, astring, logs]
  - install   ocamlfind           1.9.8   [required by mdx]
  - install   ounit2              2.2.7   [required by qcheck-ounit]
  - install   ppx_assert          v0.16.0 [required by jst-config]
  - install   ppx_base            v0.16.0 [required by time_now]
  - install   ppx_cold            v0.16.0 [required by ppx_base]
  - install   ppx_compare         v0.16.0 [required by ppx_base]
  - install   ppx_derivers        1.2.1   [required by ppxlib]
  - install   ppx_enumerate       v0.16.0 [required by ppx_base]
  - install   ppx_globalize       v0.16.0 [required by ppx_base]
  - install   ppx_hash            v0.16.0 [required by ppx_base]
  - install   ppx_here            v0.16.0 [required by ppx_assert]
  - install   ppx_inline_test     v0.16.1 [required by patricia-tree]
  - install   ppx_optcomp         v0.16.0 [required by time_now]
  - install   ppx_sexp_conv       v0.16.0 [required by ppx_base]
  - install   ppxlib              0.35.0  [required by ppx_inline_test]
  - install   qcheck              0.27    [required by patricia-tree]
  - install   qcheck-core         0.27    [required by qcheck]
  - install   qcheck-ounit        0.27    [required by qcheck]
  - install   re                  1.14.0  [required by mdx]
  - install   result              1.5     [required by mdx]
  - install   seq                 base    [required by ounit2]
  - install   sexplib0            v0.16.0 [required by base, ppxlib]
  - install   stdio               v0.16.0 [required by ppx_optcomp]
  - install   stdlib-shims        0.3.0   [required by ppxlib]
  - install   time_now            v0.16.0 [required by ppx_inline_test]
  - install   topkg               1.1.1   [required by fmt, astring, logs]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved astring.0.8.5  (https://opam.ocaml.org/cache)
-> retrieved base.v0.16.4  (https://opam.ocaml.org/cache)
-> retrieved camlp-streams.5.0.1  (https://opam.ocaml.org/cache)
-> retrieved cmdliner.2.1.0  (https://opam.ocaml.org/cache)
-> retrieved cppo.1.8.0  (https://opam.ocaml.org/cache)
-> retrieved csexp.1.5.2  (https://opam.ocaml.org/cache)
-> installed camlp-streams.5.0.1
-> installed csexp.1.5.2
-> installed cppo.1.8.0
-> retrieved dune-configurator.3.22.0  (https://opam.ocaml.org/cache)
-> retrieved fmt.0.11.0  (https://opam.ocaml.org/cache)
-> retrieved jane-street-headers.v0.16.0  (https://opam.ocaml.org/cache)
-> retrieved jst-config.v0.16.0  (https://opam.ocaml.org/cache)
-> retrieved logs.0.10.0  (https://opam.ocaml.org/cache)
-> installed jane-street-headers.v0.16.0
-> retrieved mdx.2.5.1  (https://opam.ocaml.org/cache)
-> installed cmdliner.2.1.0
-> retrieved ocaml-compiler-libs.v0.12.4  (https://opam.ocaml.org/cache)
-> retrieved ocaml-version.4.0.3  (https://opam.ocaml.org/cache)
-> installed dune-configurator.3.22.0
-> retrieved ocamlbuild.0.16.1  (https://opam.ocaml.org/cache)
-> installed ocaml-version.4.0.3
-> retrieved ocamlfind.1.9.8  (https://opam.ocaml.org/cache)
-> retrieved ounit2.2.2.7  (https://opam.ocaml.org/cache)
-> retrieved patricia-tree.0.12.0  (https://opam.ocaml.org/cache)
-> retrieved ppx_assert.v0.16.0  (https://opam.ocaml.org/cache)
-> retrieved ppx_base.v0.16.0  (https://opam.ocaml.org/cache)
-> retrieved ppx_cold.v0.16.0  (https://opam.ocaml.org/cache)
-> installed ocaml-compiler-libs.v0.12.4
-> retrieved ppx_compare.v0.16.0  (https://opam.ocaml.org/cache)
-> retrieved ppx_derivers.1.2.1  (https://opam.ocaml.org/cache)
-> retrieved ppx_enumerate.v0.16.0  (https://opam.ocaml.org/cache)
-> retrieved ppx_globalize.v0.16.0  (https://opam.ocaml.org/cache)
-> installed ppx_derivers.1.2.1
-> retrieved ppx_hash.v0.16.0  (https://opam.ocaml.org/cache)
-> retrieved ppx_here.v0.16.0  (https://opam.ocaml.org/cache)
-> retrieved ppx_inline_test.v0.16.1  (https://opam.ocaml.org/cache)
-> retrieved ppx_optcomp.v0.16.0  (https://opam.ocaml.org/cache)
-> retrieved ppx_sexp_conv.v0.16.0  (https://opam.ocaml.org/cache)
-> retrieved ppxlib.0.35.0  (https://opam.ocaml.org/cache)
-> retrieved qcheck.0.27, qcheck-core.0.27, qcheck-ounit.0.27  (https://opam.ocaml.org/cache)
-> retrieved re.1.14.0  (https://opam.ocaml.org/cache)
-> retrieved result.1.5  (https://opam.ocaml.org/cache)
-> retrieved seq.base  (2 extra sources)
-> retrieved seq.base  (2 extra sources)
-> installed seq.base
-> installed result.1.5
-> retrieved sexplib0.v0.16.0  (https://opam.ocaml.org/cache)
-> retrieved stdio.v0.16.0  (https://opam.ocaml.org/cache)
-> retrieved stdlib-shims.0.3.0  (https://opam.ocaml.org/cache)
-> retrieved time_now.v0.16.0  (https://opam.ocaml.org/cache)
-> retrieved topkg.1.1.1  (https://opam.ocaml.org/cache)
-> installed ocamlfind.1.9.8
-> installed sexplib0.v0.16.0
-> installed stdlib-shims.0.3.0
-> installed re.1.14.0
-> installed qcheck-core.0.27
-> installed ounit2.2.2.7
-> installed qcheck-ounit.0.27
-> installed qcheck.0.27
-> removed   patricia-tree.0.12.0
-> installed ocamlbuild.0.16.1
-> installed base.v0.16.4
-> installed stdio.v0.16.0
-> installed topkg.1.1.1
-> installed fmt.0.11.0
-> installed astring.0.8.5
-> installed logs.0.10.0
-> installed mdx.2.5.1
-> installed ppxlib.0.35.0
-> installed ppx_globalize.v0.16.0
-> installed ppx_optcomp.v0.16.0
-> installed ppx_cold.v0.16.0
-> installed ppx_enumerate.v0.16.0
-> installed ppx_compare.v0.16.0
-> installed ppx_here.v0.16.0
-> installed ppx_sexp_conv.v0.16.0
-> installed ppx_hash.v0.16.0
-> installed ppx_assert.v0.16.0
-> installed ppx_base.v0.16.0
-> installed jst-config.v0.16.0
-> installed time_now.v0.16.0
-> installed ppx_inline_test.v0.16.1
-> installed patricia-tree.0.12.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-21 21:06.05 ---> saved as "e75e03eaa5303619f013d6cd1edfc6e6a751bcf2755f3e32311f76cee1cf87e8"

/home/opam: (run (shell  "opam reinstall --with-test --verbose patricia-tree.0.12.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\" != 'patricia-tree.0.12.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
The following actions will be performed:
=== recompile 1 package
  - recompile patricia-tree 0.12.0

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [patricia-tree.0.12.0: extract]
-> retrieved patricia-tree.0.12.0  (cached)
Processing  2/4: [patricia-tree: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "patricia-tree" "-j" "71" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/patricia-tree.0.12.0)
- (cd _build/default/test/model && ./test.exe)
- 
random seed: 220355666
- generated error fail pass / total     time test name
- 
[ ]    0    0    0    0 / 1000     0.0s is_empty
[✓] 1000    0    0 1000 / 1000     0.1s is_empty
- 
[ ]    0    0    0    0 / 1000     0.0s is_singleton
[✓] 1000    0    0 1000 / 1000     0.1s is_singleton
- 
[ ]    0    0    0    0 / 1000     0.0s singleton
[✓] 1000    0    0 1000 / 1000     0.0s singleton
- 
[ ]    0    0    0    0 / 1000     0.0s reflexive_compare
[ ]  711    0    0  711 / 1000     0.1s reflexive_compare (collecting)
[✓] 1000    0    0 1000 / 1000     0.2s reflexive_compare
- 
[ ]    0    0    0    0 / 1000     0.0s disjoint
[ ]  309    0    0  309 / 1000     0.1s disjoint (collecting)
[ ]  607    0    0  607 / 1000     0.2s disjoint (collecting)
[ ]  969    0    0  969 / 1000     0.3s disjoint (collecting)
[✓] 1000    0    0 1000 / 1000     0.3s disjoint
- 
[ ]    0    0    0    0 / 1000     0.0s equal
[ ]  834    0    0  834 / 1000     0.1s equal (collecting)
[✓] 1000    0    0 1000 / 1000     0.1s equal
- 
[ ]    0    0    0    0 / 1000     0.0s cardinal
[✓] 1000    0    0 1000 / 1000     0.0s cardinal
- 
[ ]    0    0    0    0 / 1000     0.0s mem
[✓] 1000    0    0 1000 / 1000     0.0s mem
- 
[ ]    0    0    0    0 / 1000     0.0s find
[✓] 1000    0    0 1000 / 1000     0.0s find
- 
[ ]    0    0    0    0 / 1000     0.0s unsigned_min_binding
[✓] 1000    0    0 1000 / 1000     0.0s unsigned_min_binding
- 
[ ]    0    0    0    0 / 1000     0.0s unsigned_max_binding
[✓] 1000    0    0 1000 / 1000     0.1s unsigned_max_binding
- 
[ ]    0    0    0    0 / 1000     0.0s find_opt
[✓] 1000    0    0 1000 / 1000     0.0s find_opt
- 
[ ]    0    0    0    0 / 1000     0.0s pop_unsigned_minimum
[✓] 1000    0    0 1000 / 1000     0.0s pop_unsigned_minimum
- 
[ ]    0    0    0    0 / 1000     0.0s pop_unsigned_maximum
[✓] 1000    0    0 1000 / 1000     0.0s pop_unsigned_maximum
- 
[ ]    0    0    0    0 / 1000     0.0s add
[✓] 1000    0    0 1000 / 1000     0.1s add
- 
[ ]    0    0    0    0 / 1000     0.0s split
[✓] 1000    0    0 1000 / 1000     0.0s split
- 
[ ]    0    0    0    0 / 1000     0.0s remove
[✓] 1000    0    0 1000 / 1000     0.0s remove
- 
[ ]    0    0    0    0 / 1000     0.0s insert
[ ]  756    0    0  756 / 1000     0.1s insert (collecting)
[✓] 1000    0    0 1000 / 1000     0.1s insert
- 
[ ]    0    0    0    0 / 1000     0.0s update
[✓] 1000    0    0 1000 / 1000     0.1s update
- 
[ ]    0    0    0    0 / 1000     0.0s fold (cumulative)
[✓] 1000    0    0 1000 / 1000     0.1s fold (cumulative)
- 
[ ]    0    0    0    0 / 1000     0.0s fold (ordered)
[✓] 1000    0    0 1000 / 1000     0.1s fold (ordered)
- 
[ ]    0    0    0    0 / 1000     0.0s fold (keys)
[ ]  719    0    0  719 / 1000     0.1s fold (keys) (collecting)
[✓] 1000    0    0 1000 / 1000     0.1s fold (keys)
- 
[ ]    0    0    0    0 / 1000     0.0s iter
[ ]  932    0    0  932 / 1000     0.1s iter (collecting)
[✓] 1000    0    0 1000 / 1000     0.1s iter
- 
[ ]    0    0    0    0 / 1000     0.0s map
[ ]  679    0    0  679 / 1000     0.1s map (collecting)
[✓] 1000    0    0 1000 / 1000     0.1s map
- 
[ ]    0    0    0    0 / 1000     0.0s mapi
[✓] 1000    0    0 1000 / 1000     0.1s mapi
- 
[ ]    0    0    0    0 / 1000     0.0s map_no_share
[ ]  748    0    0  748 / 1000     0.1s map_no_share (collecting)
[✓] 1000    0    0 1000 / 1000     0.1s map_no_share
- 
[ ]    0    0    0    0 / 1000     0.0s mapi_no_share
[ ]  729    0    0  729 / 1000     0.1s mapi_no_share (collecting)
[✓] 1000    0    0 1000 / 1000     0.1s mapi_no_share
- 
[ ]    0    0    0    0 / 1000     0.0s filter
[ ]  697    0    0  697 / 1000     0.1s filter (collecting)
[✓] 1000    0    0 1000 / 1000     0.1s filter
- 
[ ]    0    0    0    0 / 1000     0.0s filter_map
[ ]  681    0    0  681 / 1000     0.1s filter_map (collecting)
[✓] 1000    0    0 1000 / 1000     0.1s filter_map
- 
[ ]    0    0    0    0 / 1000     0.0s filter_map_no_share
[ ]  651    0    0  651 / 1000     0.1s filter_map_no_share (collecting)
[✓] 1000    0    0 1000 / 1000     0.2s filter_map_no_share
- 
[ ]    0    0    0    0 / 1000     0.0s for_all
[ ]  709    0    0  709 / 1000     0.1s for_all (collecting)
[✓] 1000    0    0 1000 / 1000     0.1s for_all
- 
[ ]    0    0    0    0 / 1000     0.0s idempotent_union
[ ]  756    0    0  756 / 1000     0.1s idempotent_union (collecting)
[✓] 1000    0    0 1000 / 1000     0.1s idempotent_union
- 
[ ]    0    0    0    0 / 1000     0.0s idempotent_inter
[ ]  719    0    0  719 / 1000     0.1s idempotent_inter
[✓] 1000    0    0 1000 / 1000     0.1s idempotent_inter
- 
[ ]    0    0    0    0 / 1000     0.0s idempotent_inter_filter
[ ]  515    0    0  515 / 1000     0.1s idempotent_inter_filter (collecting)
[✓] 1000    0    0 1000 / 1000     0.2s idempotent_inter_filter
- 
[ ]    0    0    0    0 / 1000     0.0s reflexive_same_domain_for_all2
[ ]  811    0    0  811 / 1000     0.1s reflexive_same_domain_for_all2 (collecting)
[✓] 1000    0    0 1000 / 1000     0.1s reflexive_same_domain_for_all2
- 
[ ]    0    0    0    0 / 1000     0.0s nonreflexive_same_domain_for_all2
[ ]  724    0    0  724 / 1000     0.1s nonreflexive_same_domain_for_all2 (collecting)
[✓] 1000    0    0 1000 / 1000     0.1s nonreflexive_same_domain_for_all2
- 
[ ]    0    0    0    0 / 1000     0.0s difference
[ ]  773    0    0  773 / 1000     0.1s difference (collecting)
[✓] 1000    0    0 1000 / 1000     0.1s difference
- 
[ ]    0    0    0    0 / 1000     0.0s reflexive_subset_domain_for_all2
[ ]  434    0    0  434 / 1000     0.1s reflexive_subset_domain_for_all2 (collecting)
[ ]  950    0    0  950 / 1000     0.2s reflexive_subset_domain_for_all2 (collecting)
[✓] 1000    0    0 1000 / 1000     0.2s reflexive_subset_domain_for_all2
- 
[ ]    0    0    0    0 / 1000     0.0s intersect
[✓] 1000    0    0 1000 / 1000     0.1s intersect
- 
[ ]    0    0    0    0 / 1000     0.0s slow_merge
[ ]  376    0    0  376 / 1000     0.1s slow_merge (collecting)
[ ]  781    0    0  781 / 1000     0.2s slow_merge (collecting)
[✓] 1000    0    0 1000 / 1000     0.2s slow_merge
- 
[ ]    0    0    0    0 / 1000     0.0s symmetric_difference
[ ]  379    0    0  379 / 1000     0.1s symmetric_difference (collecting)
[ ]  827    0    0  827 / 1000     0.2s symmetric_difference (collecting)
[✓] 1000    0    0 1000 / 1000     0.2s symmetric_difference
- 
[ ]    0    0    0    0 / 1000     0.0s min_binding_inter
[ ]  683    0    0  683 / 1000     0.1s min_binding_inter (collecting)
[✓] 1000    0    0 1000 / 1000     0.1s min_binding_inter
- 
[ ]    0    0    0    0 / 1000     0.0s max_binding_inter
[ ]  752    0    0  752 / 1000     0.1s max_binding_inter (collecting)
[✓] 1000    0    0 1000 / 1000     0.1s max_binding_inter
- 
[ ]    0    0    0    0 / 1000     0.0s fold_on_nonequal_inter
[ ]  939    0    0  939 / 1000     0.1s fold_on_nonequal_inter (collecting)
[✓] 1000    0    0 1000 / 1000     0.1s fold_on_nonequal_inter
- 
[ ]    0    0    0    0 / 1000     0.0s fold_on_nonequal_union
[ ]  841    0    0  841 / 1000     0.1s fold_on_nonequal_union (collecting)
[✓] 1000    0    0 1000 / 1000     0.1s fold_on_nonequal_union
- 
[ ]    0    0    0    0 / 1000     0.0s nonidempotent_inter_no_share
[ ]  859    0    0  859 / 1000     0.1s nonidempotent_inter_no_share (collecting)
[✓] 1000    0    0 1000 / 1000     0.1s nonidempotent_inter_no_share
- 
[ ]    0    0    0    0 / 1000     0.0s of_list
[ ]  203    0    0  203 / 1000     0.1s of_list
[ ]  392    0    0  392 / 1000     0.2s of_list
[ ]  453    0    0  453 / 1000     0.3s of_list
[ ]  600    0    0  600 / 1000     0.4s of_list
[ ]  665    0    0  665 / 1000     0.5s of_list
[ ]  770    0    0  770 / 1000     0.6s of_list
[ ]  832    0    0  832 / 1000     0.8s of_list
[ ]  910    0    0  910 / 1000     0.9s of_list
[✓] 1000    0    0 1000 / 1000     0.9s of_list
- 
[ ]    0    0    0    0 / 1000     0.0s of_seq
[ ]  203    0    0  203 / 1000     0.1s of_seq
[ ]  392    0    0  392 / 1000     0.2s of_seq
[ ]  453    0    0  453 / 1000     0.3s of_seq
[ ]  600    0    0  600 / 1000     0.5s of_seq
[ ]  673    0    0  673 / 1000     0.6s of_seq
[ ]  791    0    0  791 / 1000     0.7s of_seq
[ ]  826    0    0  826 / 1000     0.8s of_seq
[ ]  882    0    0  882 / 1000     0.9s of_seq
[✓] 1000    0    0 1000 / 1000     1.0s of_seq
- 
[ ]    0    0    0    0 / 1000     0.0s add_seq
[ ]  163    0    0  163 / 1000     0.1s add_seq
[ ]  372    0    0  372 / 1000     0.2s add_seq
[ ]  506    0    0  506 / 1000     0.3s add_seq
[ ]  696    0    0  696 / 1000     0.4s add_seq
[ ]  788    0    0  788 / 1000     0.6s add_seq
[ ]  925    0    0  925 / 1000     0.7s add_seq
[ ]  986    0    0  986 / 1000     0.8s add_seq
[✓] 1000    0    0 1000 / 1000     0.8s add_seq
- 
[ ]    0    0    0    0 / 1000     0.0s to_list
[✓] 1000    0    0 1000 / 1000     0.0s to_list
- 
[ ]    0    0    0    0 / 1000     0.0s to_seq
[✓] 1000    0    0 1000 / 1000     0.1s to_seq
- 
[ ]    0    0    0    0 / 1000     0.0s to_rev_seq
[✓] 1000    0    0 1000 / 1000     0.0s to_rev_seq
- ================================================================================
- success (ran 52 tests)
-> compiled  patricia-tree.0.12.0
-> removed   patricia-tree.0.12.0
-> installed patricia-tree.0.12.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-21 21:06.32 ---> saved as "3bbc92ea7dee39b74bfb0446bc053f998531f9273b50f8be1b0366773eeb29c3"
Job succeeded
2026-03-21 21:06.55: Job succeeded