- github
- ocaml
- opam-repository
- 3e0c39
- compilers,4.14,dune.3.22.2,revdeps,yuujinchou.2.0.0
(not at the head of any monitored branch or PR)
2026-04-10 17:57.30: New job: test yuujinchou.2.0.0 with dune.3.22.2, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29704/head (3e0c395e7b1393a792367f8edca3654dac71e6fd)
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/29704/head" && git reset --hard 3e0c395e
git fetch origin master
git merge --no-edit 9d8ceab8e9f49f5671cf459997c8a47cf0e675ca
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4
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 dune.3.22.2 3.22.2
RUN opam reinstall dune.3.22.2; \
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" != 'dune.3.22.2' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall yuujinchou.2.0.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" != 'yuujinchou.2.0.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 yuujinchou.2.0.0) || true
RUN opam reinstall --with-test --verbose yuujinchou.2.0.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" != 'yuujinchou.2.0.0' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
END-OF-DOCKERFILE
docker build -f ../Dockerfile .
2026-04-10 17:57.30: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4-dune.3.22.2-yuujinchou.2.0.0-3e0c395e7b1393a792367f8edca3654dac71e6fd"
2026-04-10 17:57.30: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4)
(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 dune.3.22.2 3.22.2"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune.3.22.2;\
\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\" != 'dune.3.22.2' && 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 yuujinchou.2.0.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\" != 'yuujinchou.2.0.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 yuujinchou.2.0.0) || true"))
(run (shell "opam reinstall --with-test --verbose yuujinchou.2.0.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\" != 'yuujinchou.2.0.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2026-04-10 17:57.30: Waiting for resource in pool OCluster
2026-04-11 01:59.48: Waiting for worker…
2026-04-11 02:03.25: Got resource from pool OCluster
Building on toxis.caelum.ci.dev
All commits already cached
Updating files: 86% (16227/18670)
Updating files: 87% (16243/18670)
Updating files: 88% (16430/18670)
Updating files: 89% (16617/18670)
Updating files: 90% (16803/18670)
Updating files: 91% (16990/18670)
Updating files: 92% (17177/18670)
Updating files: 93% (17364/18670)
Updating files: 94% (17550/18670)
Updating files: 95% (17737/18670)
Updating files: 96% (17924/18670)
Updating files: 97% (18110/18670)
Updating files: 98% (18297/18670)
Updating files: 99% (18484/18670)
Updating files: 100% (18670/18670)
Updating files: 100% (18670/18670), done.
HEAD is now at 9d8ceab8e9 Merge pull request #29697 from filipeom/opam-publish-smtml.0.25.0
Updating 9d8ceab8e9..3e0c395e7b
Fast-forward
packages/chrome-trace/chrome-trace.3.22.2/opam | 39 +++++++++++
.../dune-action-plugin.3.22.2/opam | 52 +++++++++++++++
.../dune-action-trace.3.22.2/opam | 39 +++++++++++
.../dune-build-info/dune-build-info.3.22.2/opam | 45 +++++++++++++
.../dune-configurator.3.22.2/opam | 49 ++++++++++++++
packages/dune-glob/dune-glob.3.22.2/opam | 42 ++++++++++++
.../dune-private-libs.3.22.2/opam | 50 +++++++++++++++
packages/dune-rpc-lwt/dune-rpc-lwt.3.22.2/opam | 41 ++++++++++++
packages/dune-rpc/dune-rpc.3.22.2/opam | 44 +++++++++++++
packages/dune-site/dune-site.3.22.2/opam | 37 +++++++++++
packages/dune/dune.3.22.2/opam | 75 ++++++++++++++++++++++
packages/dyn/dyn.3.22.2/opam | 40 ++++++++++++
packages/fs-io/fs-io.3.22.2/opam | 39 +++++++++++
packages/ocamlc-loc/ocamlc-loc.3.22.2/opam | 43 +++++++++++++
packages/ordering/ordering.3.22.2/opam | 38 +++++++++++
packages/stdune/stdune.3.22.2/opam | 46 +++++++++++++
packages/top-closure/top-closure.3.22.2/opam | 38 +++++++++++
packages/xdg/xdg.3.22.2/opam | 39 +++++++++++
18 files changed, 796 insertions(+)
create mode 100644 packages/chrome-trace/chrome-trace.3.22.2/opam
create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.22.2/opam
create mode 100644 packages/dune-action-trace/dune-action-trace.3.22.2/opam
create mode 100644 packages/dune-build-info/dune-build-info.3.22.2/opam
create mode 100644 packages/dune-configurator/dune-configurator.3.22.2/opam
create mode 100644 packages/dune-glob/dune-glob.3.22.2/opam
create mode 100644 packages/dune-private-libs/dune-private-libs.3.22.2/opam
create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.22.2/opam
create mode 100644 packages/dune-rpc/dune-rpc.3.22.2/opam
create mode 100644 packages/dune-site/dune-site.3.22.2/opam
create mode 100644 packages/dune/dune.3.22.2/opam
create mode 100644 packages/dyn/dyn.3.22.2/opam
create mode 100644 packages/fs-io/fs-io.3.22.2/opam
create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.22.2/opam
create mode 100644 packages/ordering/ordering.3.22.2/opam
create mode 100644 packages/stdune/stdune.3.22.2/opam
create mode 100644 packages/top-closure/top-closure.3.22.2/opam
create mode 100644 packages/xdg/xdg.3.22.2/opam
(from ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4)
2026-04-11 02:04.40 ---> using "e7349b5faa6e8ea47e3f73a0784842b9d8524e468ce596e92633dbea53bd1c16" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-04-11 02:04.40 ---> using "345d07c1ddcf0b692213607682954d9bdf190a7dc793f33951a109185e732dcb" from cache
/home/opam: (run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
- you won't be able to use mercurial repositories unless you install the hg command on your system.
- you won't be able to use darcs repositories unless you install the darcs command on your system.
This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.
Continue? [Y/n] y
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-04-11 02:04.40 ---> using "6e021c655ca00bde9af60e23db55b09a0bcc3db0d3ca38d66f78ad53e254a31c" from cache
/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version 2.5.0
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=debian os-version=13
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 71
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 4.14
# invariant ["ocaml-base-compiler" {= "4.14.3"}]
# compiler-packages ocaml-base-compiler.4.14.3, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 4.14.3
2026-04-11 02:04.40 ---> using "7b2a5ae62cf702b99c177da358372ff585494a0b1c5dfffe5c4eda3046bc59fb" from cache
/home/opam: (env OPAMDOWNLOADJOBS 1)
/home/opam: (env OPAMERRLOGLEN 0)
/home/opam: (env OPAMPRECISETRACKING 1)
/home/opam: (env CI true)
/home/opam: (env OPAM_REPO_CI true)
/home/opam: (run (shell "rm -rf opam-repository/"))
2026-04-11 02:04.40 ---> using "2d8e28a183d0990d4c5f7a587471f7c743cdf0d9f00bdf4de7761e94ec09202a" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-04-11 02:04.42 ---> using "43c49734bd8015921029b9a907dd77c0e05208c46b686916515831f5a9e9d500" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-11 02:04.42 ---> using "bb36992fd0066703535b2984ee1ead3db92bb1f04a8df092631924067dac4082" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian trixie InRelease
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [121 kB]
- Fetched 211 kB in 0s (1985 kB/s)
- Reading package lists...
2026-04-11 02:04.42 ---> using "e0d9ada0baddc41d2c835edef7d0cf7cceebd2dadac41fda17c9e860b5313a74" from cache
/home/opam: (run (shell "opam pin add -k version -yn dune.3.22.2 3.22.2"))
dune is now pinned to version 3.22.2
2026-04-11 02:04.42 ---> using "a60db6b945be7f2fc9953546cee71bf416921d54f02951a4c9176dbdf1065520" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune.3.22.2;\
\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\" != 'dune.3.22.2' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
dune.3.22.2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
- install dune 3.22.2 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.22.2 (cached)
-> installed dune.3.22.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 02:04.48 ---> saved as "59eacf68137f7dccf94b9ebc5274fdc537230a8c71c2eb52f8fcf698829c6d46"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall yuujinchou.2.0.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\" != 'yuujinchou.2.0.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
yuujinchou.2.0.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
- install yuujinchou 2.0.0
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved yuujinchou.2.0.0 (https://opam.ocaml.org/cache)
-> installed yuujinchou.2.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 02:04.56 ---> saved as "13e9cb4d0c56243fdb42fe4dc69503c0bbb159398f66f3d3d3b50b3d29c1dd27"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test yuujinchou.2.0.0) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile yuujinchou 2.0.0
=== install 17 packages
- install alcotest 1.9.1 [required by yuujinchou]
- install astring 0.8.5 [required by alcotest]
- install cmdliner 2.1.0 [required by alcotest]
- install fmt 0.11.0 [required by alcotest]
- install ocaml-syntax-shims 1.0.0 [required by alcotest]
- install ocamlbuild 0.16.1 [required by fmt, astring, uutf]
- install ocamlfind 1.9.8 [required by fmt, astring, uutf]
- install ounit2 2.2.7 [required by qcheck-ounit]
- install qcheck 0.91 [required by yuujinchou]
- install qcheck-alcotest 0.91 [required by yuujinchou]
- install qcheck-core 0.91 [required by qcheck, qcheck-alcotest]
- install qcheck-ounit 0.91 [required by qcheck]
- install re 1.14.0 [required by alcotest]
- install seq base [required by ounit2]
- install stdlib-shims 0.3.0 [required by alcotest]
- install topkg 1.1.1 [required by fmt, astring, uutf]
- install uutf 1.0.4 [required by alcotest]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1 (https://opam.ocaml.org/cache)
-> retrieved astring.0.8.5 (https://opam.ocaml.org/cache)
-> retrieved cmdliner.2.1.0 (https://opam.ocaml.org/cache)
-> retrieved fmt.0.11.0 (https://opam.ocaml.org/cache)
-> retrieved ocaml-syntax-shims.1.0.0 (https://opam.ocaml.org/cache)
-> retrieved ocamlbuild.0.16.1 (https://opam.ocaml.org/cache)
-> retrieved ocamlfind.1.9.8 (https://opam.ocaml.org/cache)
-> retrieved ounit2.2.2.7 (https://opam.ocaml.org/cache)
-> retrieved qcheck.0.91, qcheck-alcotest.0.91, qcheck-core.0.91, qcheck-ounit.0.91 (https://opam.ocaml.org/cache)
-> retrieved re.1.14.0 (https://opam.ocaml.org/cache)
-> retrieved seq.base (2 extra sources)
-> retrieved seq.base (2 extra sources)
-> installed seq.base
-> retrieved stdlib-shims.0.3.0 (https://opam.ocaml.org/cache)
-> installed ocaml-syntax-shims.1.0.0
-> retrieved topkg.1.1.1 (https://opam.ocaml.org/cache)
-> installed stdlib-shims.0.3.0
-> retrieved uutf.1.0.4 (https://opam.ocaml.org/cache)
-> retrieved yuujinchou.2.0.0 (https://opam.ocaml.org/cache)
-> installed ounit2.2.2.7
-> installed re.1.14.0
-> installed qcheck-core.0.91
-> installed qcheck-ounit.0.91
-> installed qcheck.0.91
-> installed ocamlfind.1.9.8
-> installed cmdliner.2.1.0
-> removed yuujinchou.2.0.0
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed astring.0.8.5
-> installed alcotest.1.9.1
-> installed qcheck-alcotest.0.91
-> installed yuujinchou.2.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 02:05.48 ---> saved as "21c6c45a31dcdcb09e4712ea4723baeff816ce27b9e9a4c0ffc02ef4fb40d8eb"
/home/opam: (run (shell "opam reinstall --with-test --verbose yuujinchou.2.0.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\" != 'yuujinchou.2.0.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 yuujinchou 2.0.0
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [yuujinchou.2.0.0: extract]
-> retrieved yuujinchou.2.0.0 (cached)
Processing 2/4: [yuujinchou: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "yuujinchou" "-j" "71" (CWD=/home/opam/.opam/4.14/.opam-switch/build/yuujinchou.2.0.0)
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "yuujinchou" "-j" "71" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/yuujinchou.2.0.0)
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I test/.TestTrie.eobjs/byte -I test/.TestTrie.eobjs/native -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/qcheck-core/runner -I src/.Yuujinchou.objs/byte -I src/.Yuujinchou.objs/native -intf-suffix .ml -no-alias-deps -open Dune__exe -o test/.TestTrie.eobjs/native/dune__exe__TestTrie.cmx -c -impl test/TestTrie.ml)
- File "test/TestTrie.ml", line 16, characters 22-32:
- 16 | let gen_path = Q.Gen.(small_list @@ small_string ~gen:printable)
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestTrie.ml", line 16, characters 36-48:
- 16 | let gen_path = Q.Gen.(small_list @@ small_string ~gen:printable)
- ^^^^^^^^^^^^
- Alert deprecated: Q.Gen.small_string
- Use [string_small] instead
- File "test/TestTrie.ml", line 18, characters 11-21:
- 18 | Q.Gen.(small_list @@ pair gen_path int)
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestTrie.ml", line 43, characters 45-48:
- 43 | Q.Test.make ~count ~name:"root_opt" Q.Gen.(opt int) ~print:Q.Print.(option int)
- ^^^
- Alert deprecated: Q.Gen.opt
- Use [option] instead
- File "test/TestTrie.ml", line 65, characters 48-51:
- 65 | Q.Test.make ~count ~name:"iteri" Q.Gen.(pair (opt gen_path) gen_list)
- ^^^
- Alert deprecated: Q.Gen.opt
- Use [option] instead
- File "test/TestTrie.ml", line 75, characters 19-22:
- 75 | Q.Gen.(triple (opt gen_path) (Q.fun2 obs_path Q.Observable.int int) gen_list)
- ^^^
- Alert deprecated: Q.Gen.opt
- Use [option] instead
- File "test/TestTrie.ml", line 83, characters 19-22:
- 83 | Q.Gen.(triple (opt gen_path) (Q.fun2 obs_path Q.Observable.int bool) gen_list)
- ^^^
- Alert deprecated: Q.Gen.opt
- Use [option] instead
- File "test/TestTrie.ml", line 91, characters 19-22:
- 91 | Q.Gen.(triple (opt gen_path) (Q.fun2 obs_path Q.Observable.int (opt int)) gen_list)
- ^^^
- Alert deprecated: Q.Gen.opt
- Use [option] instead
- File "test/TestTrie.ml", line 91, characters 68-71:
- 91 | Q.Gen.(triple (opt gen_path) (Q.fun2 obs_path Q.Observable.int (opt int)) gen_list)
- ^^^
- Alert deprecated: Q.Gen.opt
- Use [option] instead
- File "test/TestTrie.ml", line 116, characters 62-65:
- 116 | Q.Gen.(triple gen_path (Q.fun1 Q.Observable.(option int) (opt int)) gen_list)
- ^^^
- Alert deprecated: Q.Gen.opt
- Use [option] instead
- File "test/TestTrie.ml", line 125, characters 51-54:
- 125 | Q.Gen.(pair (Q.fun1 Q.Observable.(option int) (opt int)) gen_list)
- ^^^
- Alert deprecated: Q.Gen.opt
- Use [option] instead
- File "test/TestTrie.ml", line 135, characters 17-20:
- 135 | Q.Gen.(quad (opt gen_path) (Q.fun3 obs_path Q.Observable.int Q.Observable.int int) gen_list gen_list)
- ^^^
- Alert deprecated: Q.Gen.opt
- Use [option] instead
- File "test/TestTrie.ml", line 148, characters 17-20:
- 148 | Q.Gen.(quad (opt gen_path) (Q.fun3 obs_path Q.Observable.int Q.Observable.int int) gen_list (pair gen_path gen_list))
- ^^^
- Alert deprecated: Q.Gen.opt
- Use [option] instead
- File "test/TestTrie.ml", line 161, characters 17-20:
- 161 | Q.Gen.(quad (opt gen_path) (Q.fun3 obs_path Q.Observable.int Q.Observable.int int) gen_list (pair gen_path int))
- ^^^
- Alert deprecated: Q.Gen.opt
- Use [option] instead
- File "test/TestTrie.ml", line 191, characters 49-52:
- 191 | Q.Test.make ~count ~name:"to_seq" Q.Gen.(pair (opt gen_path) gen_list)
- ^^^
- Alert deprecated: Q.Gen.opt
- Use [option] instead
- File "test/TestTrie.ml", line 198, characters 69-72:
- 198 | Q.Test.make ~count ~name:"to_seq_with_reversed_paths" Q.Gen.(pair (opt gen_path) gen_list)
- ^^^
- Alert deprecated: Q.Gen.opt
- Use [option] instead
- File "test/TestTrie.ml", line 212, characters 19-22:
- 212 | Q.Gen.(triple (opt gen_path) (Q.fun3 obs_path Q.Observable.int Q.Observable.int int) (small_list @@ pair gen_path int))
- ^^^
- Alert deprecated: Q.Gen.opt
- Use [option] instead
- File "test/TestTrie.ml", line 212, characters 90-100:
- 212 | Q.Gen.(triple (opt gen_path) (Q.fun3 obs_path Q.Observable.int Q.Observable.int int) (small_list @@ pair gen_path int))
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestTrie.ml", line 227, characters 26-35:
- 227 | else map Result.error small_int
- ^^^^^^^^^
- Alert deprecated: Q.Gen.small_int
- Use [nat_small] instead
- File "test/TestTrie.ml", line 240, characters 78-81:
- 240 | Q.Gen.(triple gen_path (Q.fun1 Q.Observable.(option int) (gen_result @@ opt int)) gen_list)
- ^^^
- Alert deprecated: Q.Gen.opt
- Use [option] instead
- File "test/TestTrie.ml", line 249, characters 67-70:
- 249 | Q.Gen.(pair (Q.fun1 Q.Observable.(option int) (gen_result @@ opt int)) gen_list)
- ^^^
- Alert deprecated: Q.Gen.opt
- Use [option] instead
- File "test/TestTrie.ml", line 259, characters 19-22:
- 259 | Q.Gen.(quad (opt gen_path) (Q.fun3 obs_path Q.Observable.int Q.Observable.int (gen_result int)) gen_list gen_list)
- ^^^
- Alert deprecated: Q.Gen.opt
- Use [option] instead
- File "test/TestTrie.ml", line 268, characters 19-22:
- 268 | Q.Gen.(quad (opt gen_path) (Q.fun3 obs_path Q.Observable.int Q.Observable.int (gen_result int)) gen_list (pair gen_path gen_list))
- ^^^
- Alert deprecated: Q.Gen.opt
- Use [option] instead
- File "test/TestTrie.ml", line 277, characters 19-22:
- 277 | Q.Gen.(quad (opt gen_path) (Q.fun3 obs_path Q.Observable.int Q.Observable.int (gen_result int)) gen_list (pair gen_path int))
- ^^^
- Alert deprecated: Q.Gen.opt
- Use [option] instead
- (cd _build/default/test && ./TestImportSelect.exe)
- Testing `TestImportSelect'.
- This run has ID `O5TK50B9'.
-
- [OK] import 0 import.
- [OK] import 1 import.
- [OK] import 2 import.
- [OK] select 0 select.
- [OK] select 1 select.
- [OK] select 2 select.
-
- Full test results in `~/.opam/4.14/.opam-switch/build/yuujinchou.2.0.0/_build/default/test/_build/_tests/TestImportSelect'.
- Test Successful in 0.001s. 6 tests run.
- (cd _build/default/test && ./TestAction.exe)
- Testing `Action'.
- This run has ID `8LEHIMDW'.
-
- [OK] none 0 none.
- [OK] none 1 none.
- [OK] none 2 none.
- [OK] any 0 any.
- [OK] any 1 any.
- [OK] any 2 any.
- [OK] any 3 any.
- [OK] only 0 only.
- [OK] only 1 only.
- [OK] only 2 only.
- [OK] only 3 only.
- [OK] except 0 except.
- [OK] except 1 except.
- [OK] except 2 except.
- [OK] in_ 0 in_.
- [OK] in_ 1 in_.
- [OK] in_ 2 in_.
- [OK] in_ 3 in_.
- [OK] renaming 0 renaming.
- [OK] renaming 1 renaming.
- [OK] renaming 2 renaming.
- [OK] renaming 3 renaming.
- [OK] renaming 4 renaming.
- [OK] seq 0 seq.
- [OK] seq 1 seq.
- [OK] seq 2 seq.
- [OK] seq 3 seq.
- [OK] seq 4 seq.
- [OK] union 0 union.
- [OK] union 1 union.
- [OK] union 2 union.
- [OK] union 3 union.
-
- Full test results in `~/.opam/4.14/.opam-switch/build/yuujinchou.2.0.0/_build/default/test/_build/_tests/Action'.
- Test Successful in 0.004s. 32 tests run.
- (cd _build/default/test && ./TestTrie.exe)
-
random seed: 147938744
- generated error fail pass / total time test name
-
[ ] 0 0 0 0 / 100 0.0s empty
[✓] 100 0 0 100 / 100 0.0s empty
-
[ ] 0 0 0 0 / 100 0.0s is_empty
[ ] 19 0 0 19 / 100 0.1s is_empty (collecting)
[ ] 51 0 0 51 / 100 0.2s is_empty (collecting)
[ ] 88 0 0 88 / 100 0.3s is_empty (collecting)
[✓] 100 0 0 100 / 100 0.4s is_empty
-
[ ] 0 0 0 0 / 100 0.0s root
[✓] 100 0 0 100 / 100 0.0s root
-
[ ] 0 0 0 0 / 100 0.0s root_opt
[✓] 100 0 0 100 / 100 0.0s root_opt
-
[ ] 0 0 0 0 / 100 0.0s prefix
[ ] 40 0 0 40 / 100 0.1s prefix (collecting)
[ ] 62 0 0 62 / 100 0.2s prefix (collecting)
[ ] 88 0 0 88 / 100 0.3s prefix (collecting)
[✓] 100 0 0 100 / 100 0.4s prefix
-
[ ] 0 0 0 0 / 100 0.0s singleton
[✓] 100 0 0 100 / 100 0.0s singleton
-
[ ] 0 0 0 0 / 100 0.0s find_subtree
[ ] 41 0 0 41 / 100 0.1s find_subtree (collecting)
[ ] 62 0 0 62 / 100 0.2s find_subtree (collecting)
[ ] 90 0 0 90 / 100 0.3s find_subtree (collecting)
[✓] 100 0 0 100 / 100 0.4s find_subtree
-
[ ] 0 0 0 0 / 100 0.0s find_singleton
[ ] 41 0 0 41 / 100 0.1s find_singleton (collecting)
[ ] 62 0 0 62 / 100 0.2s find_singleton (collecting)
[ ] 88 0 0 88 / 100 0.3s find_singleton (collecting)
[✓] 100 0 0 100 / 100 0.4s find_singleton
-
[ ] 0 0 0 0 / 100 0.0s find_root
[ ] 19 0 0 19 / 100 0.1s find_root (collecting)
[ ] 40 0 0 40 / 100 0.2s find_root (collecting)
[ ] 77 0 0 77 / 100 0.3s find_root (collecting)
[✓] 100 0 0 100 / 100 0.4s find_root
-
[ ] 0 0 0 0 / 100 0.0s iteri
[ ] 39 0 0 39 / 100 0.1s iteri (collecting)
[ ] 51 0 0 51 / 100 0.2s iteri (collecting)
[ ] 86 0 0 86 / 100 0.3s iteri (collecting)
[✓] 100 0 0 100 / 100 0.4s iteri
-
[ ] 0 0 0 0 / 100 0.0s mapi
[ ] 42 0 0 42 / 100 0.1s mapi (collecting)
[ ] 62 0 0 62 / 100 0.2s mapi (collecting)
[ ] 91 0 0 91 / 100 0.3s mapi (collecting)
[✓] 100 0 0 100 / 100 0.3s mapi
-
[ ] 0 0 0 0 / 100 0.0s filteri
[ ] 39 0 0 39 / 100 0.1s filteri (collecting)
[ ] 62 0 0 62 / 100 0.2s filteri (collecting)
[ ] 91 0 0 91 / 100 0.3s filteri (collecting)
[✓] 100 0 0 100 / 100 0.3s filteri
-
[ ] 0 0 0 0 / 100 0.0s filter_mapi
[ ] 42 0 0 42 / 100 0.1s filter_mapi (collecting)
[ ] 62 0 0 62 / 100 0.2s filter_mapi
[ ] 91 0 0 91 / 100 0.3s filter_mapi (collecting)
[✓] 100 0 0 100 / 100 0.4s filter_mapi
-
[ ] 0 0 0 0 / 100 0.0s update_subtree
[ ] 7 0 0 7 / 100 0.1s update_subtree
[ ] 17 0 0 17 / 100 0.2s update_subtree (collecting)
[ ] 23 0 0 23 / 100 0.3s update_subtree
[ ] 33 0 0 33 / 100 0.4s update_subtree (collecting)
[ ] 45 0 0 45 / 100 0.6s update_subtree (collecting)
[ ] 48 0 0 48 / 100 0.7s update_subtree (collecting)
[ ] 58 0 0 58 / 100 0.8s update_subtree
[ ] 66 0 0 66 / 100 0.9s update_subtree
[ ] 73 0 0 73 / 100 1.0s update_subtree (collecting)
[ ] 81 0 0 81 / 100 1.1s update_subtree (collecting)
[ ] 87 0 0 87 / 100 1.2s update_subtree (collecting)
[ ] 92 0 0 92 / 100 1.3s update_subtree
[ ] 99 0 0 99 / 100 1.4s update_subtree (collecting)
[✓] 100 0 0 100 / 100 1.4s update_subtree
-
[ ] 0 0 0 0 / 100 0.0s update_singleton
[ ] 23 0 0 23 / 100 0.1s update_singleton (collecting)
[ ] 51 0 0 51 / 100 0.2s update_singleton (collecting)
[ ] 81 0 0 81 / 100 0.3s update_singleton (collecting)
[ ] 96 0 0 96 / 100 0.4s update_singleton (collecting)
[✓] 100 0 0 100 / 100 0.4s update_singleton
-
[ ] 0 0 0 0 / 100 0.0s update_root
[ ] 18 0 0 18 / 100 0.1s update_root (collecting)
[ ] 47 0 0 47 / 100 0.2s update_root (collecting)
[ ] 84 0 0 84 / 100 0.3s update_root (collecting)
[✓] 100 0 0 100 / 100 0.4s update_root
-
[ ] 0 0 0 0 / 100 0.0s union
[ ] 11 0 0 11 / 100 0.1s union (collecting)
[ ] 23 0 0 23 / 100 0.2s union (collecting)
[ ] 28 0 0 28 / 100 0.3s union (collecting)
[ ] 41 0 0 41 / 100 0.4s union (collecting)
[ ] 57 0 0 57 / 100 0.5s union (collecting)
[ ] 61 0 0 61 / 100 0.6s union (collecting)
[ ] 68 0 0 68 / 100 0.7s union (collecting)
[ ] 83 0 0 83 / 100 0.8s union (collecting)
[ ] 99 0 0 99 / 100 0.9s union (collecting)
[✓] 100 0 0 100 / 100 0.9s union
-
[ ] 0 0 0 0 / 100 0.0s union_subtree
[ ] 10 0 0 10 / 100 0.1s union_subtree (collecting)
[ ] 17 0 0 17 / 100 0.2s union_subtree (collecting)
[ ] 26 0 0 26 / 100 0.3s union_subtree (collecting)
[ ] 39 0 0 39 / 100 0.4s union_subtree
[ ] 52 0 0 52 / 100 0.5s union_subtree (collecting)
[ ] 61 0 0 61 / 100 0.6s union_subtree (collecting)
[ ] 68 0 0 68 / 100 0.8s union_subtree (collecting)
[ ] 83 0 0 83 / 100 0.9s union_subtree (collecting)
[ ] 99 0 0 99 / 100 1.0s union_subtree (collecting)
[✓] 100 0 0 100 / 100 1.0s union_subtree
-
[ ] 0 0 0 0 / 100 0.0s union_singleton
[ ] 27 0 0 27 / 100 0.1s union_singleton (collecting)
[ ] 57 0 0 57 / 100 0.2s union_singleton (collecting)
[ ] 69 0 0 69 / 100 0.3s union_singleton (collecting)
[ ] 99 0 0 99 / 100 0.4s union_singleton (collecting)
[✓] 100 0 0 100 / 100 0.4s union_singleton
-
[ ] 0 0 0 0 / 100 0.0s detach_subtree
[ ] 40 0 0 40 / 100 0.1s detach_subtree (collecting)
[ ] 62 0 0 62 / 100 0.2s detach_subtree (collecting)
[ ] 89 0 0 89 / 100 0.3s detach_subtree (collecting)
[✓] 100 0 0 100 / 100 0.4s detach_subtree
-
[ ] 0 0 0 0 / 100 0.0s detach_singleton
[ ] 40 0 0 40 / 100 0.1s detach_singleton (collecting)
[ ] 62 0 0 62 / 100 0.2s detach_singleton (collecting)
[ ] 88 0 0 88 / 100 0.3s detach_singleton (collecting)
[ ] 96 0 0 96 / 100 0.4s detach_singleton (collecting)
[✓] 100 0 0 100 / 100 0.4s detach_singleton
-
[ ] 0 0 0 0 / 100 0.0s to_seq
[ ] 39 0 0 39 / 100 0.1s to_seq (collecting)
[ ] 51 0 0 51 / 100 0.2s to_seq (collecting)
[ ] 86 0 0 86 / 100 0.3s to_seq (collecting)
[✓] 100 0 0 100 / 100 0.4s to_seq
-
[ ] 0 0 0 0 / 100 0.0s to_seq_with_reversed_paths
[ ] 39 0 0 39 / 100 0.1s to_seq_with_reversed_paths (collecting)
[ ] 51 0 0 51 / 100 0.2s to_seq_with_reversed_paths (collecting)
[ ] 86 0 0 86 / 100 0.3s to_seq_with_reversed_paths (collecting)
[✓] 100 0 0 100 / 100 0.4s to_seq_with_reversed_paths
-
[ ] 0 0 0 0 / 100 0.0s to_seq_values
[ ] 19 0 0 19 / 100 0.1s to_seq_values (collecting)
[ ] 40 0 0 40 / 100 0.2s to_seq_values (collecting)
[ ] 77 0 0 77 / 100 0.4s to_seq_values (collecting)
[✓] 100 0 0 100 / 100 0.4s to_seq_values
-
[ ] 0 0 0 0 / 100 0.0s of_seq
[ ] 42 0 0 42 / 100 0.1s of_seq (collecting)
[ ] 70 0 0 70 / 100 0.2s of_seq (collecting)
[ ] 93 0 0 93 / 100 0.3s of_seq (collecting)
[✓] 100 0 0 100 / 100 0.3s of_seq
-
[ ] 0 0 0 0 / 100 0.0s Result.update_subtree
[ ] 10 0 0 10 / 100 0.1s Result.update_subtree (collecting)
[ ] 18 0 0 18 / 100 0.2s Result.update_subtree (collecting)
[ ] 23 0 0 23 / 100 0.3s Result.update_subtree
[ ] 25 0 0 25 / 100 0.4s Result.update_subtree (collecting)
[ ] 33 0 0 33 / 100 0.5s Result.update_subtree
[ ] 39 0 0 39 / 100 0.6s Result.update_subtree
[ ] 49 0 0 49 / 100 0.7s Result.update_subtree
[ ] 56 0 0 56 / 100 0.8s Result.update_subtree
[ ] 66 0 0 66 / 100 1.0s Result.update_subtree (collecting)
[ ] 80 0 0 80 / 100 1.1s Result.update_subtree
[ ] 87 0 0 87 / 100 1.2s Result.update_subtree (collecting)
[ ] 96 0 0 96 / 100 1.3s Result.update_subtree (collecting)
[✓] 100 0 0 100 / 100 1.4s Result.update_subtree
-
[ ] 0 0 0 0 / 100 0.0s Result.update_singleton
[ ] 23 0 0 23 / 100 0.1s Result.update_singleton (collecting)
[ ] 52 0 0 52 / 100 0.2s Result.update_singleton
[ ] 81 0 0 81 / 100 0.3s Result.update_singleton (collecting)
[ ] 96 0 0 96 / 100 0.4s Result.update_singleton (collecting)
[✓] 100 0 0 100 / 100 0.4s Result.update_singleton
-
[ ] 0 0 0 0 / 100 0.0s Result.update_root
[ ] 27 0 0 27 / 100 0.1s Result.update_root (collecting)
[ ] 60 0 0 60 / 100 0.2s Result.update_root (collecting)
[ ] 89 0 0 89 / 100 0.3s Result.update_root (collecting)
[✓] 100 0 0 100 / 100 0.3s Result.update_root
-
[ ] 0 0 0 0 / 100 0.0s Result.update_union
[ ] 11 0 0 11 / 100 0.1s Result.update_union (collecting)
[ ] 23 0 0 23 / 100 0.2s Result.update_union (collecting)
[ ] 28 0 0 28 / 100 0.3s Result.update_union (collecting)
[ ] 41 0 0 41 / 100 0.4s Result.update_union (collecting)
[ ] 57 0 0 57 / 100 0.5s Result.update_union (collecting)
[ ] 61 0 0 61 / 100 0.6s Result.update_union (collecting)
[ ] 68 0 0 68 / 100 0.8s Result.update_union (collecting)
[ ] 82 0 0 82 / 100 0.9s Result.update_union (collecting)
[ ] 91 0 0 91 / 100 1.0s Result.update_union (collecting)
[✓] 100 0 0 100 / 100 1.0s Result.update_union
-
[ ] 0 0 0 0 / 100 0.0s Result.update_union_subtree
[ ] 11 0 0 11 / 100 0.1s Result.update_union_subtree (collecting)
[ ] 19 0 0 19 / 100 0.2s Result.update_union_subtree (collecting)
[ ] 29 0 0 29 / 100 0.3s Result.update_union_subtree (collecting)
[ ] 41 0 0 41 / 100 0.4s Result.update_union_subtree (collecting)
[ ] 57 0 0 57 / 100 0.6s Result.update_union_subtree (collecting)
[ ] 63 0 0 63 / 100 0.7s Result.update_union_subtree (collecting)
[ ] 76 0 0 76 / 100 0.8s Result.update_union_subtree
[ ] 91 0 0 91 / 100 0.9s Result.update_union_subtree (collecting)
[✓] 100 0 0 100 / 100 1.0s Result.update_union_subtree
-
[ ] 0 0 0 0 / 100 0.0s Result.update_union_singleton
[ ] 27 0 0 27 / 100 0.1s Result.update_union_singleton (collecting)
[ ] 59 0 0 59 / 100 0.2s Result.update_union_singleton (collecting)
[ ] 69 0 0 69 / 100 0.3s Result.update_union_singleton (collecting)
[✓] 100 0 0 100 / 100 0.4s Result.update_union_singleton
- ================================================================================
- success (ran 31 tests)
-> compiled yuujinchou.2.0.0
-> removed yuujinchou.2.0.0
-> installed yuujinchou.2.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 02:06.12 ---> saved as "6fcb21eeef4df47c1e470d47559911171fdedc9f79d33a6db7a5952df4f69bb4"
Job succeeded
2026-04-11 02:07.27: Job succeeded