Build:
- 0
2026-02-11 04:09.46: New job: test art.0.1.0 with dune.3.21.1, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29374/head (8488f032647bf3337f4fccb6d52ed7fb871e97a1)
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/29374/head" && git reset --hard 8488f032
git fetch origin master
git merge --no-edit 98d5860f2a88bcf813cb6816f5afb924cab026a0
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:04864ce35c9a53a8f91e1b6ddfe19ff405f2881ec1201cdca698239b3b811633
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.21.1 3.21.1
RUN opam reinstall dune.3.21.1; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'dune.3.21.1' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall art.0.1.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" != 'art.0.1.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 art.0.1.0) || true
RUN opam reinstall --with-test --verbose art.0.1.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" != 'art.0.1.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-02-11 04:09.46: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:04864ce35c9a53a8f91e1b6ddfe19ff405f2881ec1201cdca698239b3b811633-dune.3.21.1-art.0.1.0-8488f032647bf3337f4fccb6d52ed7fb871e97a1"
2026-02-11 04:09.46: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:04864ce35c9a53a8f91e1b6ddfe19ff405f2881ec1201cdca698239b3b811633)
(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.21.1 3.21.1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune.3.21.1;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'dune.3.21.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall art.0.1.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\" != 'art.0.1.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 art.0.1.0) || true"))
(run (shell "opam reinstall --with-test --verbose art.0.1.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\" != 'art.0.1.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-02-11 04:09.46: Waiting for resource in pool OCluster
2026-02-11 18:14.15: Waiting for worker…
2026-02-11 18:16.38: Got resource from pool OCluster
Building on asteria.caelum.ci.dev
All commits already cached
HEAD is now at 98d5860f2a Merge pull request #29364 from fpottier/opam-publish-menhir.20260209
Updating 98d5860f2a..8488f03264
Fast-forward
packages/chrome-trace/chrome-trace.3.21.1/opam | 41 ++++++++++++
.../dune-action-plugin.3.21.1/opam | 54 ++++++++++++++++
.../dune-build-info/dune-build-info.3.21.1/opam | 47 ++++++++++++++
.../dune-configurator.3.21.1/opam | 51 +++++++++++++++
packages/dune-glob/dune-glob.3.21.1/opam | 44 +++++++++++++
.../dune-private-libs.3.21.1/opam | 52 +++++++++++++++
packages/dune-rpc-lwt/dune-rpc-lwt.3.21.1/opam | 43 +++++++++++++
packages/dune-rpc/dune-rpc.3.21.1/opam | 46 +++++++++++++
packages/dune-site/dune-site.3.21.1/opam | 39 +++++++++++
packages/dune/dune.3.21.1/opam | 75 ++++++++++++++++++++++
packages/dyn/dyn.3.21.1/opam | 42 ++++++++++++
packages/fs-io/fs-io.3.21.1/opam | 41 ++++++++++++
packages/ocamlc-loc/ocamlc-loc.3.21.1/opam | 45 +++++++++++++
packages/ordering/ordering.3.21.1/opam | 40 ++++++++++++
packages/stdune/stdune.3.21.1/opam | 48 ++++++++++++++
packages/top-closure/top-closure.3.21.1/opam | 40 ++++++++++++
packages/xdg/xdg.3.21.1/opam | 41 ++++++++++++
17 files changed, 789 insertions(+)
create mode 100644 packages/chrome-trace/chrome-trace.3.21.1/opam
create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.21.1/opam
create mode 100644 packages/dune-build-info/dune-build-info.3.21.1/opam
create mode 100644 packages/dune-configurator/dune-configurator.3.21.1/opam
create mode 100644 packages/dune-glob/dune-glob.3.21.1/opam
create mode 100644 packages/dune-private-libs/dune-private-libs.3.21.1/opam
create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.21.1/opam
create mode 100644 packages/dune-rpc/dune-rpc.3.21.1/opam
create mode 100644 packages/dune-site/dune-site.3.21.1/opam
create mode 100644 packages/dune/dune.3.21.1/opam
create mode 100644 packages/dyn/dyn.3.21.1/opam
create mode 100644 packages/fs-io/fs-io.3.21.1/opam
create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.21.1/opam
create mode 100644 packages/ordering/ordering.3.21.1/opam
create mode 100644 packages/stdune/stdune.3.21.1/opam
create mode 100644 packages/top-closure/top-closure.3.21.1/opam
create mode 100644 packages/xdg/xdg.3.21.1/opam
(from ocaml/opam:debian-13-ocaml-4.14@sha256:04864ce35c9a53a8f91e1b6ddfe19ff405f2881ec1201cdca698239b3b811633)
2026-02-11 18:34.54 ---> using "d6079ab6cce1b58b34ac9b5ed11aa86b7980ab728c75f5a6ba9271e98dc1ac1c" 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-02-11 18:34.54 ---> using "3c00c47f9d923b8bd6ffb2b949e4b9efd562ec1af5385aec1656ef10f01c4450" from cache
/home/opam: (run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
- you won't be able to use mercurial repositories unless you install the hg command on your system.
- you won't be able to use darcs repositories unless you install the darcs command on your system.
This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.
Continue? [Y/n] y
[NOTE] The 'jobs' option was reset, its value was 71 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
opam option jobs=71 --global
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-02-11 18:34.54 ---> using "a92b73fe3956045426c13ac4a0686c952a1f3abe3c88ddfc7b2f3a6ed1e46736" 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 255
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 4.14
# invariant ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 4.14.2
2026-02-11 18:34.54 ---> using "cae9d187aa902d60c82d0c2150bbd9c0de1870c923aa0b0063ad5a25247acae5" 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-02-11 18:34.54 ---> using "feb31a4f8ccbcfb9943e7338a457db5bc00688ce26b7db5634b111626cd4af24" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-02-11 18:34.55 ---> using "296924c10e1c3018c8d0476ef6e83ab08da41a4ef56f426b45fec04e1aa2f8ee" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-02-11 18:34.55 ---> using "da1022459416dab32ba4bb621c0330441679eb6552909fd59edee43c6958564d" 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 [104 kB]
- Fetched 195 kB in 0s (1490 kB/s)
- Reading package lists...
2026-02-11 18:34.55 ---> using "5379b00a780d2651eb7630b7b4fa92c64da5d76d1771efbb3a94e1284ae4fcae" from cache
/home/opam: (run (shell "opam pin add -k version -yn dune.3.21.1 3.21.1"))
dune is now pinned to version 3.21.1
2026-02-11 18:34.55 ---> using "c67070306e4698a6ec3e1eda614cc5bfb337ef04ae62c6122cc5db258781b7ef" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune.3.21.1;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'dune.3.21.1' && 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.21.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
- install dune 3.21.1 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.21.1 (cached)
-> installed dune.3.21.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-02-11 18:34.55 ---> using "9bed1fbaddf4042310d756109baf504548036d4c29d40855ed04e5e56774a802" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall art.0.1.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\" != 'art.0.1.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
art.0.1.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 6 packages
- install art 0.1.0
- install base-bytes base [required by art]
- install fmt 0.11.0 [required by art]
- install ocamlbuild 0.16.1 [required by fmt]
- install ocamlfind 1.9.8 [required by base-bytes, fmt]
- install topkg 1.1.1 [required by fmt]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved art.0.1.0 (cached)
-> retrieved fmt.0.11.0 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved topkg.1.1.1 (cached)
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed fmt.0.11.0
-> installed art.0.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-02-11 18:35.13 ---> saved as "d5d152ddf15c2eee8d3e6a5e17ba5fe8f8f2bbde37159b57818da8504b36a50d"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test art.0.1.0) || true"))
The following actions will be performed:
=== recompile 2 packages
- recompile art 0.1.0
- recompile fmt 0.11.0 [uses cmdliner]
=== install 7 packages
- install alcotest 1.9.1 [required by art]
- install astring 0.8.5 [required by alcotest]
- install cmdliner 2.1.0 [required by alcotest]
- install ocaml-syntax-shims 1.0.0 [required by alcotest]
- install re 1.14.0 [required by alcotest]
- install stdlib-shims 0.3.0 [required by alcotest]
- install uutf 1.0.4 [required by alcotest]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1 (https://opam.ocaml.org/cache)
-> retrieved art.0.1.0 (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 re.1.14.0 (https://opam.ocaml.org/cache)
-> retrieved stdlib-shims.0.3.0 (https://opam.ocaml.org/cache)
-> retrieved uutf.1.0.4 (https://opam.ocaml.org/cache)
-> installed stdlib-shims.0.3.0
-> installed ocaml-syntax-shims.1.0.0
-> installed astring.0.8.5
-> installed re.1.14.0
-> removed art.0.1.0
-> removed fmt.0.11.0
-> installed cmdliner.2.1.0
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed alcotest.1.9.1
-> installed art.0.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-02-11 18:35.29 ---> saved as "9ca02c992a3435319ce815b632224103eb8e7e67b8b6fc9018bbc84fe2088a27"
/home/opam: (run (shell "opam reinstall --with-test --verbose art.0.1.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\" != 'art.0.1.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 art 0.1.0
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [art.0.1.0: extract]
-> retrieved art.0.1.0 (cached)
Processing 2/4: [art: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "art" "-j" "255" (CWD=/home/opam/.opam/4.14/.opam-switch/build/art.0.1.0)
Processing 2/4: [art: dune runtest]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "art" "-j" "255" (CWD=/home/opam/.opam/4.14/.opam-switch/build/art.0.1.0)
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I test/.test.eobjs/byte -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/uutf -I lib/.art.objs/byte -no-alias-deps -o test/.test.eobjs/byte/dune__exe__Test.cmo -c -impl test/test.ml)
- File "test/test.ml", line 439, characters 40-46:
- 439 | Fmt.(Dump.iter_bindings Map.iter (always "map") (using (fun (x:Art.key) -> (x :> string)) (fmt "%S")) int) !map ;
- ^^^^^^
- Alert deprecated: Fmt.always
- use Fmt.any instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I test/.test.eobjs/byte -I test/.test.eobjs/native -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/uutf -I lib/.art.objs/byte -I lib/.art.objs/native -intf-suffix .ml -no-alias-deps -o test/.test.eobjs/native/dune__exe__Test.cmx -c -impl test/test.ml)
- File "test/test.ml", line 439, characters 40-46:
- 439 | Fmt.(Dump.iter_bindings Map.iter (always "map") (using (fun (x:Art.key) -> (x :> string)) (fmt "%S")) int) !map ;
- ^^^^^^
- Alert deprecated: Fmt.always
- use Fmt.any instead.
- (cd _build/default/test && ./test.exe --color=always)
- Testing `art'.
- This run has ID `O06H2SBN'.
-
- [OK] art 0 test01.
- [OK] art 1 test02.
- [OK] art 2 test03.
- [OK] art 3 test04.
- [OK] art 4 test05.
- [OK] art 5 test06.
- [OK] art 6 test07.
- [OK] art 7 test08.
- [OK] art 8 test09.
- [OK] art 9 test10.
- [OK] art 10 test11.
- [OK] art 11 test12.
- [OK] art 12 test13.
- [OK] art 13 test14.
- [OK] art 14 test15.
- [OK] minimum 0 test16.
- [OK] minimum 1 test17.
- [OK] minimum 2 test18.
- [OK] minimum 3 test19.
- [OK] minimum 4 test20.
- [OK] remove 0 test21.
- [OK] remove 1 test22.
- [OK] remove 2 test23.
- [OK] remove 3 test24.
- [OK] remove 4 test25.
- [OK] remove 5 test26.
- [OK] remove 6 test27.
- [OK] remove 7 test28.
- [OK] iter 0 test29.
- [OK] caml 0 caml.
- [OK] caml 1 caml.
- [OK] caml 2 caml.
- [OK] caml 3 caml.
-
- Full test results in `~/.opam/4.14/.opam-switch/build/art.0.1.0/_build/default/test/_build/_tests/art'.
- Test Successful in 0.290s. 33 tests run.
-> compiled art.0.1.0
-> removed art.0.1.0
-> installed art.0.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-02-11 18:35.34 ---> saved as "1ae66b0589eb41c2715fbbc70e881a5936957a0692d7553c45cc82f06058739b"
Job succeeded
2026-02-11 18:35.45: Job succeeded