(for PR #29222)

2026-01-19 20:51.41: New job: test dolmen.0.10, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29222/head (ad79ca9644feb512edcb7b55f7521e075b88d976)
                              on archlinux-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/29222/head" && git reset --hard ad79ca96
git fetch origin master
git merge --no-edit 1c997ec9e6ebc6ea699547000cb8dfa44e52efaa
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:archlinux-ocaml-4.14@sha256:dcfa7c735edf3ea659d1e81aecc3320af03af28871311c0cf414ddc14c4c2434
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 dolmen.0.10 0.10
RUN opam reinstall dolmen.0.10; \
    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 "\"archlinux\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'dolmen.0.10' && 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 dolmen.0.10) || true
RUN opam reinstall --with-test --verbose dolmen.0.10; \
    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 "\"archlinux\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'dolmen.0.10' && 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-01-19 20:51.41: Using cache hint "ocaml/opam:archlinux-ocaml-4.14@sha256:dcfa7c735edf3ea659d1e81aecc3320af03af28871311c0cf414ddc14c4c2434-dolmen.0.10-ad79ca9644feb512edcb7b55f7521e075b88d976"
2026-01-19 20:51.41: Using OBuilder spec:
((from ocaml/opam:archlinux-ocaml-4.14@sha256:dcfa7c735edf3ea659d1e81aecc3320af03af28871311c0cf414ddc14c4c2434)
 (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 dolmen.0.10 0.10"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall dolmen.0.10;\
             \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 \"\\\"archlinux\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'dolmen.0.10' && 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 dolmen.0.10) || true"))
 (run (shell  "opam reinstall --with-test --verbose dolmen.0.10;\
             \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 \"\\\"archlinux\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'dolmen.0.10' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-01-19 20:51.41: Waiting for resource in pool OCluster
2026-01-19 23:34.07: Waiting for worker…
2026-01-19 23:38.14: Got resource from pool OCluster
Building on odawa.caelum.ci.dev
All commits already cached
HEAD is now at 1c997ec9e6 Merge pull request #29241 from polytypic/release-multicore-magic-2.3.2
Updating 1c997ec9e6..ad79ca9644
Fast-forward
 packages/archetype/archetype.0.1.10/opam                     |  2 +-
 packages/archetype/archetype.0.1.11/opam                     |  2 +-
 packages/archetype/archetype.0.1.12/opam                     |  2 +-
 packages/archetype/archetype.0.1.13/opam                     |  2 +-
 packages/archetype/archetype.0.1.14/opam                     |  2 +-
 packages/archetype/archetype.0.1.3/opam                      |  2 +-
 packages/archetype/archetype.0.1.4/opam                      |  2 +-
 packages/archetype/archetype.0.1.5/opam                      |  2 +-
 packages/archetype/archetype.0.1.6/opam                      |  2 +-
 packages/archetype/archetype.0.1.8/opam                      |  2 +-
 packages/archetype/archetype.0.1.9/opam                      |  2 +-
 packages/archetype/archetype.1.0.0/opam                      |  2 +-
 packages/archetype/archetype.1.1.0/opam                      |  2 +-
 packages/archetype/archetype.1.1.1/opam                      |  2 +-
 packages/archetype/archetype.1.1.2/opam                      |  2 +-
 packages/archetype/archetype.1.2.0/opam                      |  2 +-
 packages/archetype/archetype.1.2.1/opam                      |  2 +-
 packages/archetype/archetype.1.2.10/opam                     |  2 +-
 packages/archetype/archetype.1.2.11/opam                     |  2 +-
 packages/archetype/archetype.1.2.12/opam                     |  2 +-
 packages/archetype/archetype.1.2.13/opam                     |  2 +-
 packages/archetype/archetype.1.2.14/opam                     |  2 +-
 packages/archetype/archetype.1.2.15/opam                     |  2 +-
 packages/archetype/archetype.1.2.16/opam                     |  2 +-
 packages/archetype/archetype.1.2.2/opam                      |  2 +-
 packages/archetype/archetype.1.2.3/opam                      |  2 +-
 packages/archetype/archetype.1.2.4/opam                      |  2 +-
 packages/archetype/archetype.1.2.5/opam                      |  2 +-
 packages/archetype/archetype.1.2.6/opam                      |  2 +-
 packages/archetype/archetype.1.2.7/opam                      |  2 +-
 packages/archetype/archetype.1.2.8/opam                      |  2 +-
 packages/archetype/archetype.1.2.9/opam                      |  2 +-
 packages/archetype/archetype.1.3.0/opam                      |  2 +-
 packages/archetype/archetype.1.3.1/opam                      |  2 +-
 packages/archetype/archetype.1.3.2/opam                      |  2 +-
 packages/archetype/archetype.1.3.3/opam                      |  2 +-
 packages/archetype/archetype.1.3.4/opam                      |  2 +-
 packages/archetype/archetype.1.3.5/opam                      |  2 +-
 packages/archetype/archetype.1.3.6/opam                      |  2 +-
 packages/archetype/archetype.1.4.0/opam                      |  2 +-
 packages/archetype/archetype.1.4.1/opam                      |  2 +-
 packages/archetype/archetype.1.4.2/opam                      |  2 +-
 packages/archetype/archetype.1.4.3/opam                      |  2 +-
 packages/archetype/archetype.1.5.0/opam                      |  2 +-
 packages/archetype/archetype.1.5.1/opam                      |  2 +-
 packages/archetype/archetype.1.5.2/opam                      |  2 +-
 packages/archetype/archetype.1.5.3/opam                      |  2 +-
 packages/bnfgen/bnfgen.4.0.0/opam                            |  2 +-
 packages/catala/catala.0.10.0/opam                           |  2 +-
 packages/catala/catala.0.3.0/opam                            |  2 +-
 packages/catala/catala.0.5.0/opam                            |  2 +-
 packages/catala/catala.0.6.0/opam                            |  2 +-
 packages/catala/catala.0.7.0/opam                            |  2 +-
 packages/catala/catala.0.8.0/opam                            |  2 +-
 packages/catala/catala.0.9.0/opam                            |  2 +-
 packages/catala/catala.1.0.0/opam                            |  2 +-
 packages/catala/catala.1.0.0~alpha/opam                      |  2 +-
 packages/catala/catala.1.0.0~beta/opam                       |  2 +-
 packages/dolmen/dolmen.0.1/opam                              |  2 +-
 packages/dolmen/dolmen.0.10/opam                             |  2 +-
 packages/dolmen/dolmen.0.2/opam                              |  2 +-
 packages/dolmen/dolmen.0.4.1/opam                            |  2 +-
 packages/dolmen/dolmen.0.4/opam                              |  2 +-
 packages/dolmen/dolmen.0.5/opam                              |  2 +-
 packages/dolmen/dolmen.0.6/opam                              |  4 ++--
 packages/dolmen/dolmen.0.7/opam                              |  2 +-
 packages/dolmen/dolmen.0.8.1/opam                            |  2 +-
 packages/dolmen/dolmen.0.8/opam                              |  2 +-
 packages/dolmen/dolmen.0.9/opam                              |  2 +-
 .../embedded_ocaml_templates.0.1.4/opam                      | 12 ++++++------
 .../embedded_ocaml_templates.0.2/opam                        | 12 ++++++------
 .../embedded_ocaml_templates.0.3.1/opam                      |  8 ++++----
 .../embedded_ocaml_templates.0.4/opam                        | 10 +++++-----
 .../embedded_ocaml_templates.0.5.1/opam                      | 10 +++++-----
 .../embedded_ocaml_templates.0.6/opam                        |  2 +-
 .../embedded_ocaml_templates.0.7/opam                        |  2 +-
 packages/morbig/morbig.0.10.3/opam                           |  2 +-
 packages/morbig/morbig.0.10.4/opam                           |  2 +-
 packages/morbig/morbig.0.11.0/opam                           |  2 +-
 packages/morbig/morbig.0.9.1/opam                            |  2 +-
 packages/morbig/morbig.0.9/opam                              |  2 +-
 packages/otoml/otoml.0.9.0/opam                              |  2 +-
 packages/otoml/otoml.0.9.1/opam                              |  2 +-
 packages/otoml/otoml.0.9.2/opam                              |  2 +-
 packages/otoml/otoml.0.9.3/opam                              |  2 +-
 packages/otoml/otoml.1.0.0/opam                              |  2 +-
 packages/otoml/otoml.1.0.1/opam                              |  2 +-
 packages/otoml/otoml.1.0.2/opam                              |  2 +-
 packages/otoml/otoml.1.0.3/opam                              |  2 +-
 packages/otoml/otoml.1.0.4/opam                              |  2 +-
 packages/otoml/otoml.1.0.5/opam                              |  2 +-
 packages/touist/touist.3.0.0/opam                            |  2 +-
 packages/touist/touist.3.1.0/opam                            |  2 +-
 packages/touist/touist.3.2.0/opam                            |  2 +-
 packages/touist/touist.3.2.1/opam                            |  2 +-
 packages/touist/touist.3.5.0/opam                            |  2 +-
 packages/unionFind/unionFind.20250818/opam                   |  2 +-
 97 files changed, 119 insertions(+), 119 deletions(-)

(from ocaml/opam:archlinux-ocaml-4.14@sha256:dcfa7c735edf3ea659d1e81aecc3320af03af28871311c0cf414ddc14c4c2434)
2026-01-19 23:38.20 ---> using "8304b0faf2ad5be6b149274ceebe6b312868e0124191bcff859577a4ebedb3a2" 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-01-19 23:38.20 ---> using "b9cc76d5c5e6ba8ee9552676153cfca58f963943406f027ca4deab5150d0dc43" 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 ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[ocaml-patches-overlay] synchronised from git+https://github.com/ocurrent/opam-repository#patches
[default] Initialised
2026-01-19 23:38.42 ---> saved as "40e1d4788698e002243038f44b167a62075ed4bed3800e356970963de2c7f693"

/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=arch os-version=20260111.0.480139
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 255
# repositories         2 (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-01-19 23:38.42 ---> saved as "82c623e199775ccd18489beb65f5abbbde3df6d8b39a3d0de237074cd9be4fc1"

/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-01-19 23:39.02 ---> saved as "3aa673d53df54d555006bd6a966ffbe6820f2913a2afc2eea7bae3acb6ff7ddf"

/home/opam: (copy (src .) (dst opam-repository/))
2026-01-19 23:39.12 ---> saved as "d32b608cd4ad5927c3a50d8b7732151bd454b21325ff7f8d0b5411595815e9f1"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-01-19 23:39.28 ---> saved as "1437bace251cd9fce49df4c671d8c051f85cfdc1093dfbcf281dfe6fc3a2f5c2"

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/sbin/sudo "pacman" "-Sy"
- :: Synchronizing package databases...
-  core downloading...
-  extra downloading...
2026-01-19 23:39.29 ---> saved as "a31857892cf21e8c6aec2c49449a3f2952e69dbd766da830f0f8b66fae89aa5c"

/home/opam: (run (shell "opam pin add -k version -yn dolmen.0.10 0.10"))
dolmen is now pinned to version 0.10
2026-01-19 23:39.31 ---> saved as "11d61a40a7968589fd293e4a9a45bda3c368e042ba25e56e8b1aef5ca92fca69"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall dolmen.0.10;\
                        \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 \"\\\"archlinux\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'dolmen.0.10' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
dolmen.0.10 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== recompile 2 packages
  ↻ ocaml       4.14.2        [upstream or system changes]
  ↻ opam-depext 1.2.3         [uses ocaml]
=== install 12 packages
  ∗ dolmen      0.10 (pinned)
  ∗ dune        3.21.0        [required by dolmen]
  ∗ fmt         0.11.0        [required by dolmen]
  ∗ hmap        0.8.1         [required by dolmen]
  ∗ menhir      20250912      [required by dolmen]
  ∗ menhirCST   20250912      [required by menhir]
  ∗ menhirLib   20250912      [required by menhir]
  ∗ menhirSdk   20250912      [required by menhir]
  ∗ ocamlbuild  0.16.1        [required by fmt, hmap]
  ∗ ocamlfind   1.9.8         [required by fmt, hmap]
  ∗ seq         base          [required by dolmen]
  ∗ topkg       1.1.1         [required by fmt, hmap]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
⬇ retrieved dolmen.0.10  (cached)
⬇ retrieved dune.3.21.0  (cached)
⬇ retrieved fmt.0.11.0  (cached)
⬇ retrieved hmap.0.8.1  (cached)
⬇ retrieved menhir.20250912, menhirCST.20250912, menhirLib.20250912, menhirSdk.20250912  (cached)
⬇ retrieved ocamlbuild.0.16.1  (cached)
⬇ retrieved ocamlfind.1.9.8  (cached)
⬇ retrieved opam-depext.1.2.3  (cached)
⬇ retrieved seq.base  (cached)
⊘ removed   opam-depext.1.2.3
⊘ removed   ocaml.4.14.2
∗ installed ocaml.4.14.2
∗ installed seq.base
⬇ retrieved topkg.1.1.1  (cached)
∗ installed opam-depext.1.2.3
∗ installed ocamlfind.1.9.8
∗ installed ocamlbuild.0.16.1
∗ installed topkg.1.1.1
∗ installed hmap.0.8.1
∗ installed fmt.0.11.0
∗ installed dune.3.21.0
∗ installed menhirCST.20250912
∗ installed menhirSdk.20250912
∗ installed menhirLib.20250912
∗ installed menhir.20250912
∗ installed dolmen.0.10
Done.

<><> opam-depext.1.2.3 installed successfully <><><><><><><><><><><><><><><><><>
=> opam-depext is unnecessary when used with opam >= 2.1. Please use opam install directly instead
# To update the current shell environment, run: eval $(opam env)
2026-01-19 23:40.15 ---> saved as "b975c54fc23a97e3890e297f9d56940bb36160cd151e5452839ca0609f4305b6"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test dolmen.0.10) || true"))
The following actions will be performed:
=== recompile 2 packages
  ↻ dolmen        0.10 (pinned)
  ↻ fmt           0.11.0        [uses cmdliner]
=== install 15 packages
  ∗ astring       0.8.5         [required by mdx]
  ∗ camlp-streams 5.0.1         [required by mdx]
  ∗ cmdliner      2.1.0         [required by mdx]
  ∗ cppo          1.8.0         [required by mdx]
  ∗ csexp         1.5.2         [required by mdx]
  ∗ logs          0.10.0        [required by mdx]
  ∗ mdx           2.5.1         [required by dolmen]
  ∗ ocaml-version 4.0.3         [required by mdx]
  ∗ ounit2        2.2.7         [required by qcheck-ounit]
  ∗ qcheck        0.91          [required by dolmen]
  ∗ qcheck-core   0.91          [required by qcheck]
  ∗ qcheck-ounit  0.91          [required by qcheck]
  ∗ re            1.14.0        [required by mdx]
  ∗ result        1.5           [required by mdx]
  ∗ stdlib-shims  0.3.0         [required by ounit2]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
⬇ retrieved astring.0.8.5  (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)
∗ installed camlp-streams.5.0.1
⬇ retrieved cppo.1.8.0  (https://opam.ocaml.org/cache)
⬇ retrieved csexp.1.5.2  (https://opam.ocaml.org/cache)
⬇ retrieved fmt.0.11.0  (https://opam.ocaml.org/cache)
⬇ retrieved logs.0.10.0  (https://opam.ocaml.org/cache)
∗ installed csexp.1.5.2
⬇ retrieved mdx.2.5.1  (https://opam.ocaml.org/cache)
⬇ retrieved ocaml-version.4.0.3  (https://opam.ocaml.org/cache)
⬇ retrieved ounit2.2.2.7  (https://opam.ocaml.org/cache)
∗ installed cppo.1.8.0
∗ installed ocaml-version.4.0.3
⬇ retrieved qcheck.0.91, qcheck-core.0.91, qcheck-ounit.0.91  (https://opam.ocaml.org/cache)
∗ installed astring.0.8.5
⬇ retrieved re.1.14.0  (https://opam.ocaml.org/cache)
⬇ retrieved result.1.5  (https://opam.ocaml.org/cache)
⬇ retrieved stdlib-shims.0.3.0  (https://opam.ocaml.org/cache)
∗ installed result.1.5
∗ installed stdlib-shims.0.3.0
∗ installed qcheck-core.0.91
∗ installed re.1.14.0
∗ installed ounit2.2.2.7
∗ installed qcheck-ounit.0.91
⊘ removed   dolmen.0.10
⊘ removed   fmt.0.11.0
∗ installed cmdliner.2.1.0
∗ installed qcheck.0.91
∗ installed fmt.0.11.0
∗ installed logs.0.10.0
∗ installed mdx.2.5.1
∗ installed dolmen.0.10
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-19 23:41.20 ---> saved as "1cc599a6cb8f4c8b8eae281d34e41e2fff85d96698fab090153728712ad64c29"

/home/opam: (run (shell  "opam reinstall --with-test --verbose dolmen.0.10;\
                        \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 \"\\\"archlinux\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'dolmen.0.10' && 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
  ↻ dolmen 0.10 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  2/4: [dolmen: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "dolmen" "-j" "255" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/dolmen.0.10)
- (cd _build/default/src/languages/dimacs && /home/opam/.opam/4.14/bin/menhir --external-tokens Tokens tokens.mly parser.mly --base parser.mly --update-errors syntax.messages) > _build/default/src/languages/dimacs/updated.messages
- Read 18 sample input sentences and 18 error messages.
- (cd _build/default/src/languages/icnf && /home/opam/.opam/4.14/bin/menhir --external-tokens Tokens tokens.mly parser.mly --base parser.mly --update-errors syntax.messages) > _build/default/src/languages/icnf/updated.messages
- Read 20 sample input sentences and 20 error messages.
- (cd _build/default/src/languages/smtlib2/v2.6/response && /home/opam/.opam/4.14/bin/menhir --external-tokens Tokens tokens.mly parser.mly --base parser.mly --update-errors syntax.messages) > _build/default/src/languages/smtlib2/v2.6/response/updated.messages
- Read 109 sample input sentences and 109 error messages.
- (cd _build/default/src/languages/zf && /home/opam/.opam/4.14/bin/menhir --external-tokens Tokens tokens.mly parser.mly --base parser.mly --update-errors syntax.messages) > _build/default/src/languages/zf/updated.messages
- Read 128 sample input sentences and 128 error messages.
- (cd _build/default/src/languages/dimacs && /home/opam/.opam/4.14/bin/menhir --external-tokens Tokens tokens.mly parser.mly --base parser.mly --merge-errors new.messages --merge-errors updated.messages) > _build/default/src/languages/dimacs/syntax.messages.updated
- Read 18 sample input sentences and 18 error messages.
- Read 18 sample input sentences and 18 error messages.
- (cd _build/default/src/languages/smtlib2/v2.6/script && /home/opam/.opam/4.14/bin/menhir --external-tokens Tokens tokens.mly parser.mly --base parser.mly --update-errors syntax.messages) > _build/default/src/languages/smtlib2/v2.6/script/updated.messages
- Read 255 sample input sentences and 255 error messages.
- (cd _build/default/src/languages/icnf && /home/opam/.opam/4.14/bin/menhir --external-tokens Tokens tokens.mly parser.mly --base parser.mly --merge-errors new.messages --merge-errors updated.messages) > _build/default/src/languages/icnf/syntax.messages.updated
- Read 20 sample input sentences and 20 error messages.
- Read 20 sample input sentences and 20 error messages.
- (cd _build/default/src/languages/smtlib2/poly && /home/opam/.opam/4.14/bin/menhir --external-tokens Tokens tokens.mly parser.mly --base parser.mly --update-errors syntax.messages) > _build/default/src/languages/smtlib2/poly/updated.messages
- Read 321 sample input sentences and 321 error messages.
- (cd _build/default/src/languages/ae && /home/opam/.opam/4.14/bin/menhir --external-tokens Tokens tokens.mly parser.mly --base parser.mly --update-errors syntax.messages) > _build/default/src/languages/ae/updated.messages
- Read 241 sample input sentences and 241 error messages.
- (cd _build/default/src/languages/smtlib2/v2.6/response && /home/opam/.opam/4.14/bin/menhir --external-tokens Tokens tokens.mly parser.mly --base parser.mly --merge-errors new.messages --merge-errors updated.messages) > _build/default/src/languages/smtlib2/v2.6/response/syntax.messages.updated
- Read 109 sample input sentences and 109 error messages.
- Read 109 sample input sentences and 109 error messages.
- (cd _build/default/src/languages/tptp/v6.3.0 && /home/opam/.opam/4.14/bin/menhir --external-tokens Tokens tokens.mly parser.mly --base parser.mly --update-errors syntax.messages) > _build/default/src/languages/tptp/v6.3.0/updated.messages
- Read 342 sample input sentences and 342 error messages.
- (cd _build/default/src/languages/zf && /home/opam/.opam/4.14/bin/menhir --external-tokens Tokens tokens.mly parser.mly --base parser.mly --merge-errors new.messages --merge-errors updated.messages) > _build/default/src/languages/zf/syntax.messages.updated
- Read 128 sample input sentences and 128 error messages.
- Read 128 sample input sentences and 128 error messages.
- (cd _build/default/src/languages/smtlib2/v2.6/script && /home/opam/.opam/4.14/bin/menhir --external-tokens Tokens tokens.mly parser.mly --base parser.mly --merge-errors new.messages --merge-errors updated.messages) > _build/default/src/languages/smtlib2/v2.6/script/syntax.messages.updated
- Read 255 sample input sentences and 255 error messages.
- Read 255 sample input sentences and 255 error messages.
- (cd _build/default/src/languages/smtlib2/poly && /home/opam/.opam/4.14/bin/menhir --external-tokens Tokens tokens.mly parser.mly --base parser.mly --merge-errors new.messages --merge-errors updated.messages) > _build/default/src/languages/smtlib2/poly/syntax.messages.updated
- Read 321 sample input sentences and 321 error messages.
- Read 321 sample input sentences and 321 error messages.
- (cd _build/default/src/languages/dimacs && /home/opam/.opam/4.14/bin/menhir --external-tokens Tokens tokens.mly parser.mly --base parser.mly --compile-errors syntax.messages) > _build/default/src/languages/dimacs/syntax_messages.ml
- Read 18 sample input sentences and 18 error messages.
- (cd _build/default/src/languages/icnf && /home/opam/.opam/4.14/bin/menhir --external-tokens Tokens tokens.mly parser.mly --base parser.mly --compile-errors syntax.messages) > _build/default/src/languages/icnf/syntax_messages.ml
- Read 20 sample input sentences and 20 error messages.
- (cd _build/default/src/languages/smtlib2/v2.6/response && /home/opam/.opam/4.14/bin/menhir --external-tokens Tokens tokens.mly parser.mly --base parser.mly --compile-errors syntax.messages) > _build/default/src/languages/smtlib2/v2.6/response/syntax_messages.ml
- Read 109 sample input sentences and 109 error messages.
- (cd _build/default/src/languages/zf && /home/opam/.opam/4.14/bin/menhir --external-tokens Tokens tokens.mly parser.mly --base parser.mly --compile-errors syntax.messages) > _build/default/src/languages/zf/syntax_messages.ml
- Read 128 sample input sentences and 128 error messages.
- (cd _build/default/src/languages/smtlib2/v2.6/script && /home/opam/.opam/4.14/bin/menhir --external-tokens Tokens tokens.mly parser.mly --base parser.mly --compile-errors syntax.messages) > _build/default/src/languages/smtlib2/v2.6/script/syntax_messages.ml
- Read 255 sample input sentences and 255 error messages.
- (cd _build/default/src/languages/ae && /home/opam/.opam/4.14/bin/menhir --external-tokens Tokens tokens.mly parser.mly --base parser.mly --merge-errors new.messages --merge-errors updated.messages) > _build/default/src/languages/ae/syntax.messages.updated
- Read 241 sample input sentences and 241 error messages.
- Read 241 sample input sentences and 241 error messages.
- (cd _build/default/src/languages/smtlib2/poly && /home/opam/.opam/4.14/bin/menhir --external-tokens Tokens tokens.mly parser.mly --base parser.mly --compile-errors syntax.messages) > _build/default/src/languages/smtlib2/poly/syntax_messages.ml
- Read 321 sample input sentences and 321 error messages.
- (cd _build/default/src/languages/tptp/v6.3.0 && /home/opam/.opam/4.14/bin/menhir --external-tokens Tokens tokens.mly parser.mly --base parser.mly --merge-errors new.messages --merge-errors updated.messages) > _build/default/src/languages/tptp/v6.3.0/syntax.messages.updated
- Read 342 sample input sentences and 342 error messages.
- Read 342 sample input sentences and 342 error messages.
- (cd _build/default/src/languages/ae && /home/opam/.opam/4.14/bin/menhir --external-tokens Tokens tokens.mly parser.mly --base parser.mly --compile-errors syntax.messages) > _build/default/src/languages/ae/syntax_messages.ml
- Read 241 sample input sentences and 241 error messages.
- (cd _build/default/src/languages/tptp/v6.3.0 && /home/opam/.opam/4.14/bin/menhir --external-tokens Tokens tokens.mly parser.mly --base parser.mly --compile-errors syntax.messages) > _build/default/src/languages/tptp/v6.3.0/syntax_messages.ml
- Read 342 sample input sentences and 342 error messages.
- (cd _build/default/tests/qcheck && ./main.exe --colors --verbose)
- 
random seed: 275465717
- generated error fail pass / total     time test name
- 
[ ]    0    0    0    0 /   50     0.0s Print.smtlib2_6.id
[ ]   13    0    0    1 /   50     0.1s Print.smtlib2_6.id (collecting)
[ ]   30    0    0    3 /   50     0.3s Print.smtlib2_6.id (collecting)
[ ]   36    0    0    6 /   50     0.4s Print.smtlib2_6.id (collecting)
[ ]   48    0    0    8 /   50     0.5s Print.smtlib2_6.id (collecting)
[ ]   79    0    0   11 /   50     0.6s Print.smtlib2_6.id (collecting)
[ ]  100    0    0   13 /   50     0.7s Print.smtlib2_6.id (collecting)
[ ]  112    0    0   14 /   50     1.3s Print.smtlib2_6.id (collecting)
[ ]  119    0    0   14 /   50     1.5s Print.smtlib2_6.id (collecting)
[ ]  128    0    0   14 /   50     1.7s Print.smtlib2_6.id (collecting)
[ ]  159    0    0   16 /   50     2.1s Print.smtlib2_6.id (collecting)
[ ]  179    0    0   17 /   50     2.2s Print.smtlib2_6.id (collecting)
[ ]  194    0    0   19 /   50     2.3s Print.smtlib2_6.id (collecting)
[ ]  221    0    0   23 /   50     2.4s Print.smtlib2_6.id (collecting)
[ ]  232    0    0   24 /   50     2.6s Print.smtlib2_6.id (collecting)
[ ]  253    0    0   26 /   50     2.7s Print.smtlib2_6.id (collecting)
[ ]  257    0    0   26 /   50     2.8s Print.smtlib2_6.id (collecting)
[ ]  261    0    0   27 /   50     3.4s Print.smtlib2_6.id (collecting)
[ ]  268    0    0   28 /   50     3.9s Print.smtlib2_6.id (collecting)
[ ]  271    0    0   28 /   50     4.0s Print.smtlib2_6.id (collecting)
[ ]  278    0    0   28 /   50     4.1s Print.smtlib2_6.id (collecting)
[ ]  288    0    0   31 /   50     4.4s Print.smtlib2_6.id (collecting)
[ ]  292    0    0   31 /   50     5.0s Print.smtlib2_6.id (collecting)
[ ]  300    0    0   32 /   50     5.1s Print.smtlib2_6.id (collecting)
[ ]  309    0    0   33 /   50     5.4s Print.smtlib2_6.id (collecting)
[ ]  329    0    0   36 /   50     5.7s Print.smtlib2_6.id (collecting)
[ ]  336    0    0   36 /   50     6.3s Print.smtlib2_6.id (collecting)
[ ]  349    0    0   36 /   50     6.4s Print.smtlib2_6.id (collecting)
[ ]  359    0    0   38 /   50     6.8s Print.smtlib2_6.id (collecting)
[ ]  385    0    0   41 /   50     6.9s Print.smtlib2_6.id (collecting)
[ ]  389    0    0   41 /   50     7.8s Print.smtlib2_6.id (collecting)
[ ]  395    0    0   42 /   50     7.9s Print.smtlib2_6.id (collecting)
[ ]  403    0    0   42 /   50     8.8s Print.smtlib2_6.id (collecting)
[ ]  406    0    0   43 /   50     8.9s Print.smtlib2_6.id (collecting)
[ ]  415    0    0   44 /   50     9.0s Print.smtlib2_6.id (collecting)
[ ]  436    0    0   45 /   50     9.7s Print.smtlib2_6.id (collecting)
[✓]  456    0    0   50 /   50     9.7s Print.smtlib2_6.id
- 
[ ]    0    0    0    0 /   50     0.0s Print.smtlib2_6.id_printable
[ ]   13    0    0    5 /   50     0.1s Print.smtlib2_6.id_printable (collecting)
[ ]   15    0    0    6 /   50     0.3s Print.smtlib2_6.id_printable (collecting)
[ ]   49    0    0   18 /   50     0.6s Print.smtlib2_6.id_printable (collecting)
[ ]   52    0    0   18 /   50     0.7s Print.smtlib2_6.id_printable (collecting)
[ ]   66    0    0   22 /   50     0.8s Print.smtlib2_6.id_printable (collecting)
[ ]   70    0    0   22 /   50     1.9s Print.smtlib2_6.id_printable (collecting)
[ ]   80    0    0   26 /   50     2.1s Print.smtlib2_6.id_printable (collecting)
[ ]   97    0    0   31 /   50     3.2s Print.smtlib2_6.id_printable (collecting)
[ ]  106    0    0   34 /   50     3.4s Print.smtlib2_6.id_printable (collecting)
[ ]  119    0    0   38 /   50     3.6s Print.smtlib2_6.id_printable (collecting)
[ ]  130    0    0   41 /   50     3.7s Print.smtlib2_6.id_printable (collecting)
[ ]  140    0    0   44 /   50     3.8s Print.smtlib2_6.id_printable (collecting)
[✓]  159    0    0   50 /   50     3.8s Print.smtlib2_6.id_printable
- 
[ ]    0    0    0    0 /   50     0.0s Print.smtlib2_poly.id
[ ]   13    0    0    1 /   50     0.1s Print.smtlib2_poly.id (collecting)
[ ]   32    0    0    4 /   50     0.3s Print.smtlib2_poly.id (collecting)
[ ]   40    0    0    8 /   50     0.4s Print.smtlib2_poly.id (collecting)
[ ]   49    0    0    8 /   50     0.5s Print.smtlib2_poly.id (collecting)
[ ]   89    0    0   13 /   50     0.6s Print.smtlib2_poly.id (collecting)
[ ]  112    0    0   14 /   50     1.2s Print.smtlib2_poly.id (collecting)
[ ]  119    0    0   14 /   50     1.4s Print.smtlib2_poly.id (collecting)
[ ]  124    0    0   14 /   50     1.5s Print.smtlib2_poly.id (collecting)
[ ]  147    0    0   14 /   50     1.7s Print.smtlib2_poly.id (collecting)
[ ]  159    0    0   16 /   50     2.0s Print.smtlib2_poly.id (collecting)
[ ]  174    0    0   17 /   50     2.1s Print.smtlib2_poly.id (collecting)
[ ]  194    0    0   19 /   50     2.3s Print.smtlib2_poly.id (collecting)
[ ]  223    0    0   23 /   50     2.4s Print.smtlib2_poly.id (collecting)
[ ]  232    0    0   24 /   50     2.5s Print.smtlib2_poly.id (collecting)
[ ]  253    0    0   26 /   50     2.6s Print.smtlib2_poly.id (collecting)
[ ]  257    0    0   26 /   50     2.7s Print.smtlib2_poly.id (collecting)
[ ]  261    0    0   27 /   50     3.4s Print.smtlib2_poly.id (collecting)
[ ]  268    0    0   28 /   50     3.7s Print.smtlib2_poly.id (collecting)
[ ]  276    0    0   28 /   50     3.9s Print.smtlib2_poly.id (collecting)
[ ]  286    0    0   31 /   50     4.1s Print.smtlib2_poly.id (collecting)
[ ]  288    0    0   31 /   50     4.3s Print.smtlib2_poly.id (collecting)
[ ]  292    0    0   31 /   50     4.7s Print.smtlib2_poly.id (collecting)
[ ]  300    0    0   32 /   50     4.8s Print.smtlib2_poly.id (collecting)
[ ]  309    0    0   33 /   50     5.2s Print.smtlib2_poly.id (collecting)
[ ]  322    0    0   35 /   50     5.4s Print.smtlib2_poly.id (collecting)
[ ]  334    0    0   36 /   50     5.5s Print.smtlib2_poly.id (collecting)
[ ]  336    0    0   36 /   50     6.1s Print.smtlib2_poly.id (collecting)
[ ]  359    0    0   38 /   50     6.6s Print.smtlib2_poly.id (collecting)
[ ]  370    0    0   39 /   50     6.7s Print.smtlib2_poly.id (collecting)
[ ]  389    0    0   41 /   50     7.6s Print.smtlib2_poly.id (collecting)
[ ]  395    0    0   42 /   50     7.8s Print.smtlib2_poly.id (collecting)
[ ]  403    0    0   42 /   50     8.6s Print.smtlib2_poly.id (collecting)
[ ]  407    0    0   43 /   50     8.8s Print.smtlib2_poly.id (collecting)
[ ]  415    0    0   44 /   50     8.9s Print.smtlib2_poly.id (collecting)
[ ]  433    0    0   45 /   50     9.0s Print.smtlib2_poly.id (collecting)
[ ]  436    0    0   45 /   50     9.9s Print.smtlib2_poly.id (collecting)
[✓]  456    0    0   50 /   50     9.9s Print.smtlib2_poly.id
- 
[ ]    0    0    0    0 /   50     0.0s Print.smtlib2_poly.id_printable
[ ]   13    0    0    5 /   50     0.1s Print.smtlib2_poly.id_printable (collecting)
[ ]   15    0    0    6 /   50     0.3s Print.smtlib2_poly.id_printable (collecting)
[ ]   48    0    0   18 /   50     0.4s Print.smtlib2_poly.id_printable (collecting)
[ ]   49    0    0   18 /   50     0.6s Print.smtlib2_poly.id_printable (collecting)
[ ]   52    0    0   18 /   50     0.7s Print.smtlib2_poly.id_printable (collecting)
[ ]   70    0    0   22 /   50     2.0s Print.smtlib2_poly.id_printable (collecting)
[ ]   80    0    0   26 /   50     2.1s Print.smtlib2_poly.id_printable (collecting)
[ ]   97    0    0   31 /   50     3.6s Print.smtlib2_poly.id_printable (collecting)
[ ]  119    0    0   38 /   50     3.8s Print.smtlib2_poly.id_printable (collecting)
[ ]  134    0    0   42 /   50     4.0s Print.smtlib2_poly.id_printable (collecting)
[ ]  140    0    0   44 /   50     4.2s Print.smtlib2_poly.id_printable (collecting)
[✓]  159    0    0   50 /   50     4.2s Print.smtlib2_poly.id_printable
- 
[ ]    0    0    0    0 /  500     0.0s Maps.add_find
[ ]    3    0    0    3 /  500     0.1s Maps.add_find (collecting)
[ ]   14    0    0   14 /  500     0.5s Maps.add_find (collecting)
[ ]   24    0    0   24 /  500     0.6s Maps.add_find (collecting)
[ ]   31    0    0   31 /  500     0.7s Maps.add_find (collecting)
[ ]   38    0    0   38 /  500     0.9s Maps.add_find (collecting)
[ ]   40    0    0   40 /  500     1.1s Maps.add_find (collecting)
[ ]   47    0    0   47 /  500     1.3s Maps.add_find (collecting)
[ ]   58    0    0   58 /  500     1.4s Maps.add_find (collecting)
[ ]   75    0    0   75 /  500     1.6s Maps.add_find (collecting)
[ ]   92    0    0   92 /  500     1.7s Maps.add_find (collecting)
[ ]   96    0    0   96 /  500     1.8s Maps.add_find (collecting)
[ ]  101    0    0  101 /  500     2.0s Maps.add_find (collecting)
[ ]  109    0    0  109 /  500     2.2s Maps.add_find (collecting)
[ ]  118    0    0  118 /  500     2.3s Maps.add_find (collecting)
[ ]  126    0    0  126 /  500     2.5s Maps.add_find (collecting)
[ ]  135    0    0  135 /  500     2.6s Maps.add_find (collecting)
[ ]  143    0    0  143 /  500     2.7s Maps.add_find (collecting)
[ ]  147    0    0  147 /  500     2.8s Maps.add_find
[ ]  162    0    0  162 /  500     2.9s Maps.add_find (collecting)
[ ]  179    0    0  179 /  500     3.1s Maps.add_find (collecting)
[ ]  181    0    0  181 /  500     3.7s Maps.add_find (collecting)
[ ]  188    0    0  188 /  500     4.6s Maps.add_find (collecting)
[ ]  190    0    0  190 /  500     5.4s Maps.add_find (collecting)
[ ]  194    0    0  194 /  500     5.5s Maps.add_find (collecting)
[ ]  203    0    0  203 /  500     5.7s Maps.add_find (collecting)
[ ]  218    0    0  218 /  500     5.9s Maps.add_find (collecting)
[ ]  227    0    0  227 /  500     6.0s Maps.add_find (collecting)
[ ]  230    0    0  230 /  500     6.5s Maps.add_find (collecting)
[ ]  231    0    0  231 /  500     6.7s Maps.add_find (collecting)
[ ]  235    0    0  235 /  500     7.2s Maps.add_find (collecting)
[ ]  252    0    0  252 /  500     7.3s Maps.add_find (collecting)
[ ]  274    0    0  274 /  500     7.5s Maps.add_find (collecting)
[ ]  283    0    0  283 /  500     7.6s Maps.add_find (collecting)
[ ]  285    0    0  285 /  500     8.1s Maps.add_find (collecting)
[ ]  297    0    0  297 /  500     8.3s Maps.add_find (collecting)
[ ]  308    0    0  308 /  500     8.5s Maps.add_find (collecting)
[ ]  316    0    0  316 /  500     9.4s Maps.add_find (collecting)
[ ]  333    0    0  333 /  500     9.5s Maps.add_find (collecting)
[ ]  335    0    0  335 /  500     9.6s Maps.add_find (collecting)
[ ]  336    0    0  336 /  500     9.7s Maps.add_find
[ ]  340    0    0  340 /  500    10.1s Maps.add_find (collecting)
[ ]  353    0    0  353 /  500    10.3s Maps.add_find (collecting)
[ ]  365    0    0  365 /  500    10.8s Maps.add_find (collecting)
[ ]  373    0    0  373 /  500    11.0s Maps.add_find (collecting)
[ ]  396    0    0  396 /  500    11.6s Maps.add_find (collecting)
[ ]  398    0    0  398 /  500    12.1s Maps.add_find (collecting)
[ ]  400    0    0  400 /  500    12.7s Maps.add_find (collecting)
[ ]  402    0    0  402 /  500    12.9s Maps.add_find (collecting)
[ ]  422    0    0  422 /  500    13.0s Maps.add_find (collecting)
[ ]  427    0    0  427 /  500    13.2s Maps.add_find (collecting)
[ ]  437    0    0  437 /  500    13.3s Maps.add_find (collecting)
[ ]  442    0    0  442 /  500    13.4s Maps.add_find (collecting)
[ ]  457    0    0  457 /  500    13.5s Maps.add_find (collecting)
[ ]  465    0    0  465 /  500    13.6s Maps.add_find (collecting)
[ ]  472    0    0  472 /  500    13.8s Maps.add_find (collecting)
[ ]  482    0    0  482 /  500    13.9s Maps.add_find (collecting)
[ ]  488    0    0  488 /  500    14.1s Maps.add_find (collecting)
[✓]  500    0    0  500 /  500    14.1s Maps.add_find
- ================================================================================
- success (ran 5 tests)
λ compiled  dolmen.0.10
⊘ removed   dolmen.0.10
∗ installed dolmen.0.10
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-19 23:42.11 ---> saved as "f14a039528db297b936b9c8486883a383906fc5283c46bd8aa4b9fc99e92fd15"
Job succeeded
2026-01-19 23:42.29: Job succeeded