(for PR #29222)
2026-01-19 20:51.37: New job: test dolmen.0.9, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29222/head (ad79ca9644feb512edcb7b55f7521e075b88d976)
on ubuntu-25.10-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:ubuntu-25.10-ocaml-4.14@sha256:eb3d95343af67728aac8bd1d57ba8400141947f6ddec7feafa76517a2e313f8a
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.9 0.9
RUN opam reinstall dolmen.0.9; \
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 "\"ubuntu-25.10\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'dolmen.0.9' && 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.9) || true
RUN opam reinstall --with-test --verbose dolmen.0.9; \
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 "\"ubuntu-25.10\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'dolmen.0.9' && 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.37: Using cache hint "ocaml/opam:ubuntu-25.10-ocaml-4.14@sha256:eb3d95343af67728aac8bd1d57ba8400141947f6ddec7feafa76517a2e313f8a-dolmen.0.9-ad79ca9644feb512edcb7b55f7521e075b88d976"
2026-01-19 20:51.37: Using OBuilder spec:
((from ocaml/opam:ubuntu-25.10-ocaml-4.14@sha256:eb3d95343af67728aac8bd1d57ba8400141947f6ddec7feafa76517a2e313f8a)
(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.9 0.9"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dolmen.0.9;\
\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 \"\\\"ubuntu-25.10\\\"\"; 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.9' && 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.9) || true"))
(run (shell "opam reinstall --with-test --verbose dolmen.0.9;\
\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 \"\\\"ubuntu-25.10\\\"\"; 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.9' && 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.37: Waiting for resource in pool OCluster
2026-01-19 22:35.38: Waiting for worker…
2026-01-19 22:38.21: Got resource from pool OCluster
Building on laodoke.caelum.ci.dev
All commits already cached
Updating files: 92% (17730/19232)
Updating files: 93% (17886/19232)
Updating files: 94% (18079/19232)
Updating files: 95% (18271/19232)
Updating files: 96% (18463/19232)
Updating files: 97% (18656/19232)
Updating files: 98% (18848/19232)
Updating files: 99% (19040/19232)
Updating files: 100% (19232/19232)
Updating files: 100% (19232/19232), done.
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:ubuntu-25.10-ocaml-4.14@sha256:eb3d95343af67728aac8bd1d57ba8400141947f6ddec7feafa76517a2e313f8a)
2026-01-19 22:39.13 ---> saved as "3007dbb0af80bed2fefda657aef1c2ff0b0b14487380b4157f2dbba80affe0c9"
/: (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 22:39.13 ---> saved as "caee5088f3d81dff3e3a7e5cf810419e454980537de88ab02113acdbf4d5e93d"
/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
[ocaml-patches-overlay] synchronised from git+https://github.com/ocurrent/opam-repository#patches
2026-01-19 22:40.11 ---> saved as "a691aeea195f98e234a30a21f7af2cfec5875188a5c6189781aafad84efd942d"
/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=ubuntu os-version=25.10
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 71
# 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 22:40.12 ---> saved as "d502e17fc8dcd13ba7dc39dc7ca5a373038f3f44192c4c54c5f9056684ad84bb"
/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 22:40.22 ---> saved as "e328c3bba21f3cca3e562573f56287c630aa22342d14687d883b5d216b1d3c7d"
/home/opam: (copy (src .) (dst opam-repository/))
2026-01-19 22:40.51 ---> saved as "1b436b86f511f8e75dddbfe2fd97bdf0ea60a75c85fc85f7f276d96e52d94fc1"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-01-19 22:41.08 ---> saved as "ae694e841275dc1bb372cc3977fbd232b76ed0cc946393804e45b24159d2116e"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://archive.ubuntu.com/ubuntu questing InRelease
- Get:2 http://archive.ubuntu.com/ubuntu questing-updates InRelease [136 kB]
- Get:3 http://archive.ubuntu.com/ubuntu questing-backports InRelease [133 kB]
- Get:4 http://archive.ubuntu.com/ubuntu questing-updates/universe amd64 Packages [171 kB]
- Get:5 http://archive.ubuntu.com/ubuntu questing-updates/main amd64 Packages [302 kB]
- Get:6 http://security.ubuntu.com/ubuntu questing-security InRelease [136 kB]
- Get:7 http://security.ubuntu.com/ubuntu questing-security/main amd64 Packages [181 kB]
- Get:8 http://security.ubuntu.com/ubuntu questing-security/universe amd64 Packages [117 kB]
- Fetched 1175 kB in 1s (1771 kB/s)
- Reading package lists...
-
2026-01-19 22:41.10 ---> saved as "3970ce6493b8be99b13d8c5149681c9aa119a287920b54a16efd5633782e0a73"
/home/opam: (run (shell "opam pin add -k version -yn dolmen.0.9 0.9"))
dolmen is now pinned to version 0.9
2026-01-19 22:41.11 ---> saved as "a2cac4b201e56252d9ee4fc5a47287327e124c707fc3ee319540fbfa295a60f1"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dolmen.0.9;\
\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 \"\\\"ubuntu-25.10\\\"\"; 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.9' && 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.9 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== recompile 2 packages
- recompile ocaml 4.14.2 [upstream or system changes]
- recompile opam-depext 1.2.3 [uses ocaml]
=== install 11 packages
- install dolmen 0.9 (pinned)
- install dune 3.21.0 [required by dolmen]
- install fmt 0.11.0 [required by dolmen]
- install menhir 20250912 [required by dolmen]
- install menhirCST 20250912 [required by menhir]
- install menhirLib 20250912 [required by menhir]
- install menhirSdk 20250912 [required by menhir]
- install ocamlbuild 0.16.1 [required by fmt]
- install ocamlfind 1.9.8 [required by fmt]
- install seq base [required by dolmen]
- install topkg 1.1.1 [required by fmt]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dolmen.0.9 (cached)
-> retrieved dune.3.21.0 (cached)
-> retrieved fmt.0.11.0 (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 fmt.0.11.0
-> installed dune.3.21.0
-> installed menhirCST.20250912
-> installed menhirSdk.20250912
-> installed menhirLib.20250912
-> installed menhir.20250912
-> installed dolmen.0.9
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 22:43.15 ---> saved as "ea6bec3930b7c44eed33e022f144aa5a3c0c858c4a32dad8b99ba1708afb0782"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test dolmen.0.9) || true"))
The following actions will be performed:
=== recompile 2 packages
- recompile dolmen 0.9 (pinned)
- recompile fmt 0.11.0 [uses cmdliner]
=== install 15 packages
- install astring 0.8.5 [required by mdx]
- 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 logs 0.10.0 [required by mdx]
- install mdx 2.5.1 [required by dolmen]
- install ocaml-version 4.0.3 [required by mdx]
- install ounit2 2.2.7 [required by qcheck-ounit]
- install qcheck 0.91 [required by dolmen]
- install qcheck-core 0.91 [required by qcheck]
- install qcheck-ounit 0.91 [required by qcheck]
- install re 1.14.0 [required by mdx]
- install result 1.5 [required by mdx]
- install 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)
-> 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
-> retrieved fmt.0.11.0 (https://opam.ocaml.org/cache)
-> retrieved logs.0.10.0 (https://opam.ocaml.org/cache)
-> retrieved mdx.2.5.1 (https://opam.ocaml.org/cache)
-> installed csexp.1.5.2
-> retrieved ocaml-version.4.0.3 (https://opam.ocaml.org/cache)
-> retrieved ounit2.2.2.7 (https://opam.ocaml.org/cache)
-> retrieved qcheck.0.91, qcheck-core.0.91, qcheck-ounit.0.91 (https://opam.ocaml.org/cache)
-> installed ocaml-version.4.0.3
-> 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 cppo.1.8.0
-> installed astring.0.8.5
-> installed re.1.14.0
-> installed qcheck-core.0.91
-> installed ounit2.2.2.7
-> installed qcheck-ounit.0.91
-> installed qcheck.0.91
-> removed dolmen.0.9
-> removed fmt.0.11.0
-> installed cmdliner.2.1.0
-> installed fmt.0.11.0
-> installed logs.0.10.0
-> installed mdx.2.5.1
-> installed dolmen.0.9
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-19 22:43.54 ---> saved as "04d8d1a5a8f3d477f3add57ed9b2314d34cafa7a019eda1709a0ae83c710c01d"
/home/opam: (run (shell "opam reinstall --with-test --verbose dolmen.0.9;\
\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 \"\\\"ubuntu-25.10\\\"\"; 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.9' && 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 dolmen 0.9 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/4: [dolmen: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "dolmen" "-j" "71" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/dolmen.0.9)
- (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 253 sample input sentences and 253 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 319 sample input sentences and 319 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/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/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 253 sample input sentences and 253 error messages.
- Read 253 sample input sentences and 253 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/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 319 sample input sentences and 319 error messages.
- Read 319 sample input sentences and 319 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/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/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/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/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/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/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/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 253 sample input sentences and 253 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 319 sample input sentences and 319 error messages.
- (cd _build/default/tests/qcheck && ./main.exe --colors --verbose)
-
random seed: 309088243
- generated error fail pass / total time test name
-
[ ] 0 0 0 0 / 1000 0.0s add_find
[ ] 14 0 0 14 / 1000 0.2s add_find (collecting)
[ ] 28 0 0 28 / 1000 0.3s add_find (collecting)
[ ] 42 0 0 42 / 1000 0.4s add_find (collecting)
[ ] 77 0 0 77 / 1000 0.5s add_find (collecting)
[ ] 124 0 0 124 / 1000 0.6s add_find (collecting)
[ ] 157 0 0 157 / 1000 0.7s add_find (collecting)
[ ] 163 0 0 163 / 1000 0.9s add_find (collecting)
[ ] 173 0 0 173 / 1000 1.1s add_find (collecting)
[ ] 180 0 0 180 / 1000 1.2s add_find (collecting)
[ ] 203 0 0 203 / 1000 1.4s add_find (collecting)
[ ] 226 0 0 226 / 1000 1.6s add_find (collecting)
[ ] 272 0 0 272 / 1000 1.7s add_find (collecting)
[ ] 330 0 0 330 / 1000 1.8s add_find (collecting)
[ ] 352 0 0 352 / 1000 2.0s add_find (collecting)
[ ] 365 0 0 365 / 1000 2.2s add_find (collecting)
[ ] 390 0 0 390 / 1000 2.3s add_find
[ ] 407 0 0 407 / 1000 2.4s add_find (collecting)
[ ] 458 0 0 458 / 1000 2.6s add_find (collecting)
[ ] 488 0 0 488 / 1000 2.7s add_find (collecting)
[ ] 492 0 0 492 / 1000 2.8s add_find
[ ] 498 0 0 498 / 1000 2.9s add_find (collecting)
[ ] 537 0 0 537 / 1000 3.0s add_find
[ ] 554 0 0 554 / 1000 3.2s add_find (collecting)
[ ] 562 0 0 562 / 1000 3.4s add_find (collecting)
[ ] 590 0 0 590 / 1000 3.5s add_find
[ ] 614 0 0 614 / 1000 3.6s add_find (collecting)
[ ] 634 0 0 634 / 1000 3.7s add_find (collecting)
[ ] 655 0 0 655 / 1000 3.9s add_find (collecting)
[ ] 669 0 0 669 / 1000 4.1s add_find (collecting)
[ ] 671 0 0 671 / 1000 4.2s add_find (collecting)
[ ] 683 0 0 683 / 1000 4.4s add_find (collecting)
[ ] 713 0 0 713 / 1000 4.5s add_find (collecting)
[ ] 747 0 0 747 / 1000 4.6s add_find (collecting)
[ ] 784 0 0 784 / 1000 4.7s add_find (collecting)
[ ] 808 0 0 808 / 1000 4.8s add_find (collecting)
[ ] 814 0 0 814 / 1000 5.0s add_find (collecting)
[ ] 839 0 0 839 / 1000 5.1s add_find (collecting)
[ ] 869 0 0 869 / 1000 5.2s add_find
[ ] 899 0 0 899 / 1000 5.3s add_find (collecting)
[ ] 941 0 0 941 / 1000 5.4s add_find (collecting)
[ ] 960 0 0 960 / 1000 5.5s add_find (collecting)
[ ] 970 0 0 970 / 1000 5.6s add_find
[ ] 974 0 0 974 / 1000 5.8s add_find (collecting)
[✓] 1000 0 0 1000 / 1000 5.8s add_find
- ================================================================================
- success (ran 1 tests)
-> compiled dolmen.0.9
-> removed dolmen.0.9
-> installed dolmen.0.9
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-19 22:44.13 ---> saved as "5fe68a6dfbf0b48f2adf382c07dd9de3bd0a24f362f52f0fdad6446391967bfa"
Job succeeded
2026-01-19 22:44.20: Job succeeded