- github
- ocaml
- opam-repository
- e2e946
- compilers,5.3,dune.3.20.0~alpha4,revdeps,yuujinchou.4.0.0
(not at the head of any monitored branch or PR)
2025-08-12 13:24.45: New job: test yuujinchou.4.0.0 with dune.3.20.0~alpha4, using opam 2.3
from https://github.com/ocaml/opam-repository.git#refs/pull/28333/head (e2e946ed909ce4d2c3e1e35bbaff78b566760128)
on debian-12-ocaml-5.3/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/28333/head" && git reset --hard e2e946ed
git fetch origin master
git merge --no-edit 5b99878077ddf3134c09e188d937954bd33cfa58
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-12-ocaml-5.3@sha256:4c128e28b76bc23613903dd2c78bdf0a5de36bc06b2b1eea8d3079d07756aa03
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-2.3 /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.20.0~alpha4 3.20.0~alpha4
RUN opam reinstall dune.3.20.0~alpha4; \
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-12\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'dune.3.20.0~alpha4' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall yuujinchou.4.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-12\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'yuujinchou.4.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.4.0.0) || true
RUN opam reinstall --with-test --verbose yuujinchou.4.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-12\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'yuujinchou.4.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 .
2025-08-12 13:24.45: Using cache hint "ocaml/opam:debian-12-ocaml-5.3@sha256:4c128e28b76bc23613903dd2c78bdf0a5de36bc06b2b1eea8d3079d07756aa03-dune.3.20.0~alpha4-yuujinchou.4.0.0-e2e946ed909ce4d2c3e1e35bbaff78b566760128"
2025-08-12 13:24.45: Using OBuilder spec:
((from ocaml/opam:debian-12-ocaml-5.3@sha256:4c128e28b76bc23613903dd2c78bdf0a5de36bc06b2b1eea8d3079d07756aa03)
(user (uid 1000) (gid 1000))
(workdir /home/opam)
(run (shell "sudo ln -f /usr/bin/opam-2.3 /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.20.0~alpha4 3.20.0~alpha4"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune.3.20.0~alpha4;\
\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-12\\\"\"; 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.20.0~alpha4' && 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.4.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-12\\\"\"; 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.4.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.4.0.0) || true"))
(run (shell "opam reinstall --with-test --verbose yuujinchou.4.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-12\\\"\"; 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.4.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"))
)
2025-08-12 13:24.45: Waiting for resource in pool OCluster
2025-08-12 19:04.25: Waiting for worker…
2025-08-12 19:13.13: Got resource from pool OCluster
Building on odawa.caelum.ci.dev
All commits already cached
HEAD is now at 5b99878077 Merge pull request #28318 from ocamllibs/metaquot-0.6.0
Updating 5b99878077..e2e946ed90
Fast-forward
.../chrome-trace/chrome-trace.3.20.0~alpha4/opam | 41 ++++++++++++
.../dune-action-plugin.3.20.0~alpha4/opam | 54 ++++++++++++++++
.../dune-build-info.3.20.0~alpha4/opam | 47 ++++++++++++++
.../dune-configurator.3.20.0~alpha4/opam | 51 +++++++++++++++
packages/dune-glob/dune-glob.3.20.0~alpha4/opam | 44 +++++++++++++
.../dune-private-libs.3.20.0~alpha4/opam | 52 +++++++++++++++
.../dune-rpc-lwt/dune-rpc-lwt.3.20.0~alpha4/opam | 43 +++++++++++++
packages/dune-rpc/dune-rpc.3.20.0~alpha4/opam | 46 ++++++++++++++
packages/dune-site/dune-site.3.20.0~alpha4/opam | 39 ++++++++++++
packages/dune/dune.3.20.0~alpha4/opam | 74 ++++++++++++++++++++++
packages/dyn/dyn.3.20.0~alpha4/opam | 42 ++++++++++++
packages/ocamlc-loc/ocamlc-loc.3.20.0~alpha4/opam | 45 +++++++++++++
packages/ordering/ordering.3.20.0~alpha4/opam | 40 ++++++++++++
packages/stdune/stdune.3.20.0~alpha4/opam | 46 ++++++++++++++
packages/xdg/xdg.3.20.0~alpha4/opam | 41 ++++++++++++
15 files changed, 705 insertions(+)
create mode 100644 packages/chrome-trace/chrome-trace.3.20.0~alpha4/opam
create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.20.0~alpha4/opam
create mode 100644 packages/dune-build-info/dune-build-info.3.20.0~alpha4/opam
create mode 100644 packages/dune-configurator/dune-configurator.3.20.0~alpha4/opam
create mode 100644 packages/dune-glob/dune-glob.3.20.0~alpha4/opam
create mode 100644 packages/dune-private-libs/dune-private-libs.3.20.0~alpha4/opam
create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.20.0~alpha4/opam
create mode 100644 packages/dune-rpc/dune-rpc.3.20.0~alpha4/opam
create mode 100644 packages/dune-site/dune-site.3.20.0~alpha4/opam
create mode 100644 packages/dune/dune.3.20.0~alpha4/opam
create mode 100644 packages/dyn/dyn.3.20.0~alpha4/opam
create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.20.0~alpha4/opam
create mode 100644 packages/ordering/ordering.3.20.0~alpha4/opam
create mode 100644 packages/stdune/stdune.3.20.0~alpha4/opam
create mode 100644 packages/xdg/xdg.3.20.0~alpha4/opam
(from ocaml/opam:debian-12-ocaml-5.3@sha256:4c128e28b76bc23613903dd2c78bdf0a5de36bc06b2b1eea8d3079d07756aa03)
2025-08-12 19:13.15 ---> using "136b9da5b4792138f95300e61d33f42dd45fd35a017a7276daca78afc682748d" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam"))
2025-08-12 19:13.15 ---> using "a388c5b35cadef4c2005715355a9e850636d9e91fb537c5a71d1c45917048fdc" 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 development version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.
Continue? [y/n] y
[NOTE] The 'jobs' option was reset, its value was 71 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
opam option jobs=71 --global
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-08-12 19:13.15 ---> using "bb165827456dcd23ceb0ae78f1e65a9e17509720f29c738eb19faac8565f141e" 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.3.0 (35acd0c5abc5e66cdbd5be16ba77aa6c33a4c724)
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=debian os-version=12
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 255
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 5.3
# invariant ["ocaml-base-compiler" {= "5.3.0"}]
# compiler-packages ocaml-base-compiler.5.3.0, ocaml-compiler.5.3.0, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/5.3/lib/ocaml/stublibs:/home/opam/.opam/5.3/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 5.3.0
2025-08-12 19:13.15 ---> using "531a32bcfb595c38d922854047b33660029bc78d4418665c28feb76af7b35eb4" 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/"))
2025-08-12 19:13.15 ---> using "c20e3b5fdf01328bb44c0a8a29e7ec3ba2d9ed727ee69b4cd024fdd82aedb434" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2025-08-12 19:13.16 ---> using "c3acc61a42d74e1d56602928dd4c4cc71aedcf2618c308fe0172c55dc07cbb74" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-08-12 19:13.16 ---> using "a073e6341f274b085b706ade03ce3a5a11397d7cae3659bc592209888afe343d" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://deb.debian.org/debian bookworm InRelease [151 kB]
- Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB]
- Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB]
- Get:4 http://deb.debian.org/debian bookworm-updates/main amd64 Packages.diff/Index [21.8 kB]
- Ign:4 http://deb.debian.org/debian bookworm-updates/main amd64 Packages.diff/Index
- Get:5 http://deb.debian.org/debian bookworm-updates/main amd64 Packages [6924 B]
- Get:6 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [272 kB]
- Fetched 555 kB in 0s (1978 kB/s)
- Reading package lists...
2025-08-12 19:13.16 ---> using "1ed943a357e8b26d1a4e86f7c74a77ba28c7341af11ca2528ab0eac0583a5843" from cache
/home/opam: (run (shell "opam pin add -k version -yn dune.3.20.0~alpha4 3.20.0~alpha4"))
dune is now pinned to version 3.20.0~alpha4
2025-08-12 19:13.16 ---> using "420d28b10ba5329266149c09861f1c619540e39be8f4e047715747f65d197744" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune.3.20.0~alpha4;\
\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-12\\\"\"; 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.20.0~alpha4' && 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.20.0~alpha4 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 1 package
- install dune 3.20.0~alpha4 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.20.0~alpha4 (cached)
-> installed dune.3.20.0~alpha4
Done.
# To update the current shell environment, run: eval $(opam env)
2025-08-12 19:13.16 ---> using "b7ca17cbabb85c6394a30dfef851de0a5c9d07a981a86fbb59cfe6548ae9db2f" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall yuujinchou.4.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-12\\\"\"; 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.4.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.4.0.0 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 3 packages
- install algaeff 1.1.0 [required by yuujinchou]
- install bwd 2.3.0 [required by yuujinchou]
- install yuujinchou 4.0.0
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved algaeff.1.1.0 (cached)
-> retrieved bwd.2.3.0 (cached)
-> retrieved yuujinchou.4.0.0 (cached)
-> installed algaeff.1.1.0
-> installed bwd.2.3.0
-> installed yuujinchou.4.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-08-12 19:13.19 ---> saved as "0ca85fb3a700bf4dce1c9ae939d1b4e56e607bf5cf40ad957e9523c82f70b800"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test yuujinchou.4.0.0) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile yuujinchou 4.0.0
=== install 13 packages
- install alcotest 1.9.0 [required by yuujinchou]
- install astring 0.8.5 [required by alcotest]
- install cmdliner 1.3.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 qcheck-core 0.26 [required by yuujinchou]
- install re 1.13.2 [required by alcotest]
- install seq base [required by re]
- install stdlib-shims 0.3.0 [required by alcotest]
- install topkg 1.1.0 [required by fmt, astring, uutf]
- install uutf 1.0.4 [required by alcotest]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.0 (https://opam.ocaml.org/cache)
-> retrieved astring.0.8.5 (https://opam.ocaml.org/cache)
-> retrieved cmdliner.1.3.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)
-> installed ocaml-syntax-shims.1.0.0
-> retrieved qcheck-core.0.26 (https://opam.ocaml.org/cache)
-> retrieved re.1.13.2 (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)
-> retrieved topkg.1.1.0 (https://opam.ocaml.org/cache)
-> installed stdlib-shims.0.3.0
-> retrieved uutf.1.0.4 (https://opam.ocaml.org/cache)
-> retrieved yuujinchou.4.0.0 (https://opam.ocaml.org/cache)
-> installed cmdliner.1.3.0
-> installed qcheck-core.0.26
-> installed re.1.13.2
-> installed ocamlfind.1.9.8
-> removed yuujinchou.4.0.0
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.0
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed astring.0.8.5
-> installed alcotest.1.9.0
-> installed yuujinchou.4.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-08-12 19:13.40 ---> saved as "8be5c037ebc4bd9d7b6bf99e899383325fb64bd4fcbe302cd4b0644fda480a6a"
/home/opam: (run (shell "opam reinstall --with-test --verbose yuujinchou.4.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-12\\\"\"; 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.4.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 4.0.0
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [yuujinchou.4.0.0: extract]
-> retrieved yuujinchou.4.0.0 (cached)
Processing 2/4: [yuujinchou: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "yuujinchou" "-j" "255" (CWD=/home/opam/.opam/5.3/.opam-switch/build/yuujinchou.4.0.0)
- (cd _build/default && /home/opam/.opam/5.3/bin/ocamlc.opt -w -40 -g -bin-annot -bin-annot-occurrences -I src/.Yuujinchou.objs/byte -I /home/opam/.opam/5.3/lib/algaeff -I /home/opam/.opam/5.3/lib/bwd -cmi-file src/.Yuujinchou.objs/byte/yuujinchou__Trie.cmi -no-alias-deps -open Yuujinchou__ -o src/.Yuujinchou.objs/byte/yuujinchou__Trie.cmo -c -impl src/Trie.ml)
- File "src/Trie.ml", line 228, characters 47-49:
- 228 | let d, t = union_node ~prefix:(prefix #< seg) m (d1, t1) (d2, t2) in
- ^^
- Alert deprecated: Bwd.Bwd.Infix.#<
- Use (<:) instead
-
- File "src/Trie.ml", line 241, characters 58-61:
- 241 | update_cont path v1 @@ fun v1 -> union_ ~prefix:(prefix <>< path) m v1 v2
- ^^^
- Alert deprecated: Bwd.Bwd.Infix.<><
- Use (<@) instead
-
- File "src/Trie.ml", line 253, characters 62-65:
- 253 | update_cont path v1 @@ fun v1 -> union_root ~prefix:(prefix <>< path) m v1 v2
- ^^^
- Alert deprecated: Bwd.Bwd.Infix.<><
- Use (<@) instead
-
- File "src/Trie.ml", line 280, characters 52-54:
- 280 | SegMap.iter (fun seg -> iter_node ~prefix:(prefix #< seg) f) (get_children_node n)
- ^^
- Alert deprecated: Bwd.Bwd.Infix.#<
- Use (<:) instead
-
- File "src/Trie.ml", line 287, characters 66-68:
- 287 | SegMap.filter_map (fun seg -> filter_map_node ~prefix:(prefix #< seg) f) (get_children_node n)
- ^^
- Alert deprecated: Bwd.Bwd.Infix.#<
- Use (<:) instead
- (cd _build/default && /home/opam/.opam/5.3/bin/ocamlc.opt -w -40 -g -bin-annot -bin-annot-occurrences -I src/.Yuujinchou.objs/byte -I /home/opam/.opam/5.3/lib/algaeff -I /home/opam/.opam/5.3/lib/bwd -cmi-file src/.Yuujinchou.objs/byte/yuujinchou__Modifier.cmi -no-alias-deps -open Yuujinchou__ -o src/.Yuujinchou.objs/byte/yuujinchou__Modifier.cmo -c -impl src/Modifier.ml)
- File "src/Modifier.ml", line 53, characters 42-45:
- 53 | Trie.update_subtree p (go (prefix <>< p) m) t
- ^^^
- Alert deprecated: Bwd.Bwd.Infix.<><
- Use (<@) instead
- (cd _build/default && /home/opam/.opam/5.3/bin/ocamlopt.opt -w -40 -g -I src/.Yuujinchou.objs/byte -I src/.Yuujinchou.objs/native -I /home/opam/.opam/5.3/lib/algaeff -I /home/opam/.opam/5.3/lib/bwd -cmi-file src/.Yuujinchou.objs/byte/yuujinchou__Trie.cmi -no-alias-deps -open Yuujinchou__ -o src/.Yuujinchou.objs/native/yuujinchou__Trie.cmx -c -impl src/Trie.ml)
- File "src/Trie.ml", line 228, characters 47-49:
- 228 | let d, t = union_node ~prefix:(prefix #< seg) m (d1, t1) (d2, t2) in
- ^^
- Alert deprecated: Bwd.Bwd.Infix.#<
- Use (<:) instead
-
- File "src/Trie.ml", line 241, characters 58-61:
- 241 | update_cont path v1 @@ fun v1 -> union_ ~prefix:(prefix <>< path) m v1 v2
- ^^^
- Alert deprecated: Bwd.Bwd.Infix.<><
- Use (<@) instead
-
- File "src/Trie.ml", line 253, characters 62-65:
- 253 | update_cont path v1 @@ fun v1 -> union_root ~prefix:(prefix <>< path) m v1 v2
- ^^^
- Alert deprecated: Bwd.Bwd.Infix.<><
- Use (<@) instead
-
- File "src/Trie.ml", line 280, characters 52-54:
- 280 | SegMap.iter (fun seg -> iter_node ~prefix:(prefix #< seg) f) (get_children_node n)
- ^^
- Alert deprecated: Bwd.Bwd.Infix.#<
- Use (<:) instead
-
- File "src/Trie.ml", line 287, characters 66-68:
- 287 | SegMap.filter_map (fun seg -> filter_map_node ~prefix:(prefix #< seg) f) (get_children_node n)
- ^^
- Alert deprecated: Bwd.Bwd.Infix.#<
- Use (<:) instead
- (cd _build/default && /home/opam/.opam/5.3/bin/ocamlc.opt -w -40 -g -bin-annot -bin-annot-occurrences -I src/.Yuujinchou.objs/byte -I /home/opam/.opam/5.3/lib/algaeff -I /home/opam/.opam/5.3/lib/bwd -cmi-file src/.Yuujinchou.objs/byte/yuujinchou__Scope.cmi -no-alias-deps -open Yuujinchou__ -o src/.Yuujinchou.objs/byte/yuujinchou__Scope.cmo -c -impl src/Scope.ml)
- File "src/Scope.ml", line 85, characters 51-54:
- 85 | Internal.run ~export_prefix:(export_prefix() <>< p) ~init_visible:(S.get()).visible @@ fun () ->
- ^^^
- Alert deprecated: Bwd.Bwd.Infix.<><
- Use (<@) instead
- (cd _build/default && /home/opam/.opam/5.3/bin/ocamlopt.opt -w -40 -g -I src/.Yuujinchou.objs/byte -I src/.Yuujinchou.objs/native -I /home/opam/.opam/5.3/lib/algaeff -I /home/opam/.opam/5.3/lib/bwd -cmi-file src/.Yuujinchou.objs/byte/yuujinchou__Modifier.cmi -no-alias-deps -open Yuujinchou__ -o src/.Yuujinchou.objs/native/yuujinchou__Modifier.cmx -c -impl src/Modifier.ml)
- File "src/Modifier.ml", line 53, characters 42-45:
- 53 | Trie.update_subtree p (go (prefix <>< p) m) t
- ^^^
- Alert deprecated: Bwd.Bwd.Infix.<><
- Use (<@) instead
- (cd _build/default && /home/opam/.opam/5.3/bin/ocamlopt.opt -w -40 -g -I src/.Yuujinchou.objs/byte -I src/.Yuujinchou.objs/native -I /home/opam/.opam/5.3/lib/algaeff -I /home/opam/.opam/5.3/lib/bwd -cmi-file src/.Yuujinchou.objs/byte/yuujinchou__Scope.cmi -no-alias-deps -open Yuujinchou__ -o src/.Yuujinchou.objs/native/yuujinchou__Scope.cmx -c -impl src/Scope.ml)
- File "src/Scope.ml", line 85, characters 51-54:
- 85 | Internal.run ~export_prefix:(export_prefix() <>< p) ~init_visible:(S.get()).visible @@ fun () ->
- ^^^
- Alert deprecated: Bwd.Bwd.Infix.<><
- Use (<@) instead
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "yuujinchou" "-j" "255" "@runtest" (CWD=/home/opam/.opam/5.3/.opam-switch/build/yuujinchou.4.0.0)
- (cd _build/default && /home/opam/.opam/5.3/bin/ocamlopt.opt -w -40 -g -I test/.TestModifier.eobjs/byte -I test/.TestModifier.eobjs/native -I /home/opam/.opam/5.3/lib/alcotest -I /home/opam/.opam/5.3/lib/alcotest/engine -I /home/opam/.opam/5.3/lib/alcotest/stdlib_ext -I /home/opam/.opam/5.3/lib/algaeff -I /home/opam/.opam/5.3/lib/astring -I /home/opam/.opam/5.3/lib/bwd -I /home/opam/.opam/5.3/lib/cmdliner -I /home/opam/.opam/5.3/lib/fmt -I /home/opam/.opam/5.3/lib/fmt/cli -I /home/opam/.opam/5.3/lib/fmt/tty -I /home/opam/.opam/5.3/lib/ocaml/unix -I /home/opam/.opam/5.3/lib/re -I /home/opam/.opam/5.3/lib/seq -I /home/opam/.opam/5.3/lib/stdlib-shims -I /home/opam/.opam/5.3/lib/uutf -I src/.Yuujinchou.objs/byte -I src/.Yuujinchou.objs/native -cmi-file test/.TestModifier.eobjs/byte/dune__exe__TestModifier.cmi -no-alias-deps -o test/.TestModifier.eobjs/native/dune__exe__TestModifier.cmx -c -impl test/TestModifier.ml)
- File "test/TestModifier.ml", line 96, characters 40-42:
- 96 | (WrappedBindingNotFound (Emp #< "x" #< "y"))
- ^^
- Alert deprecated: Bwd.Bwd.Infix.#<
- Use (<:) instead
-
- File "test/TestModifier.ml", line 96, characters 33-35:
- 96 | (WrappedBindingNotFound (Emp #< "x" #< "y"))
- ^^
- Alert deprecated: Bwd.Bwd.Infix.#<
- Use (<:) instead
-
- File "test/TestModifier.ml", line 117, characters 40-42:
- 117 | (WrappedBindingNotFound (Emp #< "x" #< "y"))
- ^^
- Alert deprecated: Bwd.Bwd.Infix.#<
- Use (<:) instead
-
- File "test/TestModifier.ml", line 117, characters 33-35:
- 117 | (WrappedBindingNotFound (Emp #< "x" #< "y"))
- ^^
- Alert deprecated: Bwd.Bwd.Infix.#<
- Use (<:) instead
-
- File "test/TestModifier.ml", line 132, characters 33-35:
- 132 | (WrappedBindingNotFound (Emp #< "x"))
- ^^
- Alert deprecated: Bwd.Bwd.Infix.#<
- Use (<:) instead
-
- File "test/TestModifier.ml", line 153, characters 33-35:
- 153 | (WrappedBindingNotFound (Emp #< "x"))
- ^^
- Alert deprecated: Bwd.Bwd.Infix.#<
- Use (<:) instead
-
- File "test/TestModifier.ml", line 192, characters 33-35:
- 192 | (WrappedBindingNotFound (Emp #< "x"))
- ^^
- Alert deprecated: Bwd.Bwd.Infix.#<
- Use (<:) instead
-
- File "test/TestModifier.ml", line 203, characters 29-31:
- 203 | (of_list [["x"], U ((Emp #< "x"), N 10, N 10); ["y"], N 20])
- ^^
- Alert deprecated: Bwd.Bwd.Infix.#<
- Use (<:) instead
-
- File "test/TestModifier.ml", line 208, characters 29-31:
- 208 | (of_list [["x"], U ((Emp #< "x"), N 10, N 10); ["y"], N 20])
- ^^
- Alert deprecated: Bwd.Bwd.Infix.#<
- Use (<:) instead
- (cd _build/default && /home/opam/.opam/5.3/bin/ocamlopt.opt -w -40 -g -I test/.TestTrie.eobjs/byte -I test/.TestTrie.eobjs/native -I /home/opam/.opam/5.3/lib/algaeff -I /home/opam/.opam/5.3/lib/bwd -I /home/opam/.opam/5.3/lib/ocaml/unix -I /home/opam/.opam/5.3/lib/qcheck-core -I /home/opam/.opam/5.3/lib/qcheck-core/runner -I src/.Yuujinchou.objs/byte -I src/.Yuujinchou.objs/native -cmi-file test/.TestTrie.eobjs/byte/dune__exe__ListAsTrie.cmi -no-alias-deps -open Dune__exe -o test/.TestTrie.eobjs/native/dune__exe__ListAsTrie.cmx -c -impl test/ListAsTrie.ml)
- File "test/ListAsTrie.ml", line 36, characters 37-40:
- 36 | List.iter (fun (p, x) -> f (prefix <>< p) x) l
- ^^^
- Alert deprecated: Bwd.Bwd.Infix.<><
- Use (<@) instead
-
- File "test/ListAsTrie.ml", line 38, characters 45-48:
- 38 | List.map (fun (p, (d, t)) -> (p, f (prefix <>< p) (d, t))) l
- ^^^
- Alert deprecated: Bwd.Bwd.Infix.<><
- Use (<@) instead
-
- File "test/ListAsTrie.ml", line 40, characters 44-47:
- 40 | List.filter (fun (p, (d, t)) -> f (prefix <>< p) (d, t)) l
- ^^^
- Alert deprecated: Bwd.Bwd.Infix.<><
- Use (<@) instead
-
- File "test/ListAsTrie.ml", line 42, characters 78-81:
- 42 | List.filter_map (fun (p, (d, t)) -> Option.map (fun x -> p, x) @@ f (prefix <>< p) (d, t)) l
- ^^^
- Alert deprecated: Bwd.Bwd.Infix.<><
- Use (<@) instead
-
- File "test/ListAsTrie.ml", line 74, characters 21-24:
- 74 | (p1, m (prefix <>< p1) x1 x2) :: merge_uniq ~prefix m l1' l2'
- ^^^
- Alert deprecated: Bwd.Bwd.Infix.<><
- Use (<@) instead
-
- File "test/ListAsTrie.ml", line 95, characters 32-35:
- 95 | Seq.map (fun (p, x) -> prefix <>> p, x) @@ List.to_seq l
- ^^^
- Alert deprecated: Bwd.Bwd.Infix.<>>
- Use (@>) instead
-
- File "test/ListAsTrie.ml", line 97, characters 32-35:
- 97 | Seq.map (fun (p, x) -> prefix <>< p, x) @@ List.to_seq l
- ^^^
- Alert deprecated: Bwd.Bwd.Infix.<><
- Use (<@) instead
- (cd _build/default/test && ./TestModifier.exe)
- Testing `Modifier'.
- This run has ID `51HPFAT1'.
-
- [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] renaming 5 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/5.3/.opam-switch/build/yuujinchou.4.0.0/_build/default/test/_build/_tests/Modifier'.
- Test Successful in 0.002s. 33 tests run.
- (cd _build/default/test && ./TestTrie.exe)
-
random seed: 217180149
- 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
[ ] 80 0 0 80 / 100 0.1s is_empty (collecting)
[✓] 100 0 0 100 / 100 0.1s 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
[✓] 100 0 0 100 / 100 0.1s 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
[✓] 100 0 0 100 / 100 0.1s find_subtree
-
[ ] 0 0 0 0 / 100 0.0s find_singleton
[✓] 100 0 0 100 / 100 0.1s find_singleton
-
[ ] 0 0 0 0 / 100 0.0s find_root
[ ] 81 0 0 81 / 100 0.1s find_root (collecting)
[✓] 100 0 0 100 / 100 0.1s find_root
-
[ ] 0 0 0 0 / 100 0.0s iter
[ ] 78 0 0 78 / 100 0.1s iter (collecting)
[✓] 100 0 0 100 / 100 0.1s iter
-
[ ] 0 0 0 0 / 100 0.0s map
[ ] 98 0 0 98 / 100 0.1s map (collecting)
[✓] 100 0 0 100 / 100 0.1s map
-
[ ] 0 0 0 0 / 100 0.0s filter
[ ] 65 0 0 65 / 100 0.1s filter (collecting)
[✓] 100 0 0 100 / 100 0.1s filter
-
[ ] 0 0 0 0 / 100 0.0s filter_map
[ ] 86 0 0 86 / 100 0.1s filter_map (collecting)
[✓] 100 0 0 100 / 100 0.1s filter_map
-
[ ] 0 0 0 0 / 100 0.0s update_subtree
[ ] 14 0 0 14 / 100 0.1s update_subtree (collecting)
[ ] 48 0 0 48 / 100 0.2s update_subtree
[ ] 75 0 0 75 / 100 0.3s update_subtree
[ ] 95 0 0 95 / 100 0.4s update_subtree
[✓] 100 0 0 100 / 100 0.4s update_subtree
-
[ ] 0 0 0 0 / 100 0.0s update_singleton
[ ] 95 0 0 95 / 100 0.1s update_singleton (collecting)
[✓] 100 0 0 100 / 100 0.1s update_singleton
-
[ ] 0 0 0 0 / 100 0.0s update_root
[ ] 86 0 0 86 / 100 0.1s update_root (collecting)
[✓] 100 0 0 100 / 100 0.1s update_root
-
[ ] 0 0 0 0 / 100 0.0s union
[ ] 37 0 0 37 / 100 0.1s union (collecting)
[ ] 72 0 0 72 / 100 0.2s union
[✓] 100 0 0 100 / 100 0.2s union
-
[ ] 0 0 0 0 / 100 0.0s union_subtree
[ ] 44 0 0 44 / 100 0.1s union_subtree
[ ] 67 0 0 67 / 100 0.2s union_subtree (collecting)
[✓] 100 0 0 100 / 100 0.3s union_subtree
-
[ ] 0 0 0 0 / 100 0.0s union_singleton
[ ] 63 0 0 63 / 100 0.1s union_singleton (collecting)
[✓] 100 0 0 100 / 100 0.2s union_singleton
-
[ ] 0 0 0 0 / 100 0.0s union_root
[ ] 57 0 0 57 / 100 0.1s union_root (collecting)
[✓] 100 0 0 100 / 100 0.2s union_root
-
[ ] 0 0 0 0 / 100 0.0s detach_subtree
[ ] 82 0 0 82 / 100 0.1s detach_subtree (collecting)
[✓] 100 0 0 100 / 100 0.1s detach_subtree
-
[ ] 0 0 0 0 / 100 0.0s detach_singleton
[ ] 89 0 0 89 / 100 0.1s detach_singleton (collecting)
[✓] 100 0 0 100 / 100 0.1s detach_singleton
-
[ ] 0 0 0 0 / 100 0.0s detach_root
[ ] 87 0 0 87 / 100 0.1s detach_root (collecting)
[✓] 100 0 0 100 / 100 0.1s detach_root
-
[ ] 0 0 0 0 / 100 0.0s to_seq
[ ] 79 0 0 79 / 100 0.1s to_seq
[✓] 100 0 0 100 / 100 0.1s to_seq
-
[ ] 0 0 0 0 / 100 0.0s to_seq_with_bwd_paths
[ ] 91 0 0 91 / 100 0.1s to_seq_with_bwd_paths (collecting)
[✓] 100 0 0 100 / 100 0.1s to_seq_with_bwd_paths
-
[ ] 0 0 0 0 / 100 0.0s to_seq_values
[ ] 81 0 0 81 / 100 0.1s to_seq_values (collecting)
[✓] 100 0 0 100 / 100 0.1s to_seq_values
-
[ ] 0 0 0 0 / 100 0.0s of_seq
[ ] 80 0 0 80 / 100 0.1s of_seq (collecting)
[✓] 100 0 0 100 / 100 0.1s of_seq
-
[ ] 0 0 0 0 / 100 0.0s of_seq_with_merger
[✓] 100 0 0 100 / 100 0.1s of_seq_with_merger
-
[ ] 0 0 0 0 / 100 0.0s retag
[✓] 100 0 0 100 / 100 0.1s retag
-
[ ] 0 0 0 0 / 100 0.0s retag_subtree
[ ] 95 0 0 95 / 100 0.1s retag_subtree (collecting)
[✓] 100 0 0 100 / 100 0.1s retag_subtree
-
[ ] 0 0 0 0 / 100 0.0s untag
[ ] 81 0 0 81 / 100 0.1s untag (collecting)
[✓] 100 0 0 100 / 100 0.1s untag
-
[ ] 0 0 0 0 / 100 0.0s set_of_tags
[ ] 87 0 0 87 / 100 0.1s set_of_tags (collecting)
[✓] 100 0 0 100 / 100 0.1s set_of_tags
- ================================================================================
- success (ran 32 tests)
-> compiled yuujinchou.4.0.0
-> removed yuujinchou.4.0.0
-> installed yuujinchou.4.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-08-12 19:13.48 ---> saved as "7eb5a04a8e413e5998c01c5d4405980e27dc579141df804128173b12a4351862"
Job succeeded
2025-08-12 19:13.57: Job succeeded